stop trimming to lowercase in meta suggestion tag

This commit is contained in:
2026-05-13 07:14:32 +02:00
parent d56922c24e
commit 18661e5d2c

View File

@@ -831,7 +831,7 @@ window.initUploadForm = (selector) => {
renderTags();
const addItemTag = (val) => {
val = val.trim().toLowerCase();
val = val.trim();
if (val && !item.tags.includes(val)) {
item.tags.push(val);
renderTags();