aboutsummaryrefslogtreecommitdiff
path: root/p/scripts
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2021-10-16 13:14:18 +0200
committerGravatar GitHub <noreply@github.com> 2021-10-16 13:14:18 +0200
commitf934eb981e21f9eecca6d944b77dd7a07c74eb06 (patch)
treefeaea2e68525282682acac5955e7c60ff6858f76 /p/scripts
parentc23702eaa5d61aa83b47023d118ebb905d39ccd6 (diff)
fix (#3888)
Diffstat (limited to 'p/scripts')
-rw-r--r--p/scripts/category.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/scripts/category.js b/p/scripts/category.js
index 2f2b22ae7..3e09fc4c7 100644
--- a/p/scripts/category.js
+++ b/p/scripts/category.js
@@ -25,7 +25,7 @@ function dragend_process(t) {
t.remove();
if (p.childElementCount <= 0) {
- p.insertAdjacentHTML('beforeend', '<li class="item disabled" dropzone="move">' + context.i18n.category_empty + '</li>');
+ p.insertAdjacentHTML('beforeend', '<li class="item feed disabled" dropzone="move"><div class="alert-warn">' + context.i18n.category_empty + '</div></li>');
}
}
}