stop trimming to lowercase in meta suggestion tag
This commit is contained in:
@@ -831,7 +831,7 @@ window.initUploadForm = (selector) => {
|
|||||||
renderTags();
|
renderTags();
|
||||||
|
|
||||||
const addItemTag = (val) => {
|
const addItemTag = (val) => {
|
||||||
val = val.trim().toLowerCase();
|
val = val.trim();
|
||||||
if (val && !item.tags.includes(val)) {
|
if (val && !item.tags.includes(val)) {
|
||||||
item.tags.push(val);
|
item.tags.push(val);
|
||||||
renderTags();
|
renderTags();
|
||||||
|
|||||||
Reference in New Issue
Block a user