aboutsummaryrefslogtreecommitdiff
path: root/ui/src
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2026-02-19 14:29:03 +0100
committermetamuffin <metamuffin@disroot.org>2026-02-19 14:29:03 +0100
commit41e8ff64585b7a3b77acd027d95e3e7f651d9e0e (patch)
tree7226e1ae6d6dfd7e111ff0364889089ca5b07cd9 /ui/src
parentdc4fa1995c9a341fe3027774c52a0760a00c6387 (diff)
downloadjellything-41e8ff64585b7a3b77acd027d95e3e7f651d9e0e.tar
jellything-41e8ff64585b7a3b77acd027d95e3e7f651d9e0e.tar.bz2
jellything-41e8ff64585b7a3b77acd027d95e3e7f651d9e0e.tar.zst
migrate musicbrainz importer
Diffstat (limited to 'ui/src')
-rw-r--r--ui/src/components/admin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/admin.rs b/ui/src/components/admin.rs
index e617ce3..cddb0e2 100644
--- a/ui/src/components/admin.rs
+++ b/ui/src/components/admin.rs
@@ -33,7 +33,7 @@ markup::define!(
@if data.has(ADMIN_IMPORT_ERROR.0) {
section.message.error {
details {
- summary { p.error { @tr(ri.lang, "admin.import_errors").replace("{n}", "1") } }
+ summary { p.error { @tr(ri.lang, "admin.import_errors").replace("{n}", &data.iter(ADMIN_IMPORT_ERROR).count().to_string()) } }
ol { @for e in data.iter(ADMIN_IMPORT_ERROR) {
li.error { pre.error { @e } }
}}