mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-03 23:30:09 -05:00
[web] Fix number formatting on search page
This commit is contained in:
parent
f94763d985
commit
ad2ec2252f
@ -63,9 +63,11 @@
|
|||||||
class="button is-small is-rounded"
|
class="button is-small is-rounded"
|
||||||
@click="expand(type)"
|
@click="expand(type)"
|
||||||
v-text="
|
v-text="
|
||||||
$t(`page.search.show-${type}s`, items.total, {
|
$t(
|
||||||
count: $filters.number(items.total)
|
`page.search.show-${type}s`,
|
||||||
})
|
{ count: $n(items.total) },
|
||||||
|
items.total
|
||||||
|
)
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
|
@ -58,9 +58,11 @@
|
|||||||
class="button is-small is-rounded"
|
class="button is-small is-rounded"
|
||||||
@click="expand(type)"
|
@click="expand(type)"
|
||||||
v-text="
|
v-text="
|
||||||
$t(`page.spotify.search.show-${type}s`, items.total, {
|
$t(
|
||||||
count: $filters.number(items.total)
|
`page.spotify.search.show-${type}s`,
|
||||||
})
|
{ count: `${$n(items.total)}` },
|
||||||
|
items.total
|
||||||
|
)
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
</p>
|
</p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user