mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-03 15:20: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"
|
||||
@click="expand(type)"
|
||||
v-text="
|
||||
$t(`page.search.show-${type}s`, items.total, {
|
||||
count: $filters.number(items.total)
|
||||
})
|
||||
$t(
|
||||
`page.search.show-${type}s`,
|
||||
{ count: $n(items.total) },
|
||||
items.total
|
||||
)
|
||||
"
|
||||
/>
|
||||
</p>
|
||||
|
@ -58,9 +58,11 @@
|
||||
class="button is-small is-rounded"
|
||||
@click="expand(type)"
|
||||
v-text="
|
||||
$t(`page.spotify.search.show-${type}s`, items.total, {
|
||||
count: $filters.number(items.total)
|
||||
})
|
||||
$t(
|
||||
`page.spotify.search.show-${type}s`,
|
||||
{ count: `${$n(items.total)}` },
|
||||
items.total
|
||||
)
|
||||
"
|
||||
/>
|
||||
</p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user