From 51ee85f6f53dc1c903cb14b846699ac1ff14fcc2 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Fri, 31 Jan 2025 16:57:16 +0100 Subject: [PATCH] refresh text-mode raw tag editor also when no tags are changed e.g. when duplicate tag keys are entered or the text input contained empty or invalid lines that need to be cleaned up --- modules/ui/sections/raw_tag_editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/sections/raw_tag_editor.js b/modules/ui/sections/raw_tag_editor.js index 672dff86ae..b54f3e1ea0 100644 --- a/modules/ui/sections/raw_tag_editor.js +++ b/modules/ui/sections/raw_tag_editor.js @@ -372,7 +372,6 @@ export function uiSectionRawTagEditor(id, context) { }); var tagDiff = utilTagDiff(_tags, newTags); - if (!tagDiff.length) return; _pendingChange = _pendingChange || {}; @@ -391,6 +390,7 @@ export function uiSectionRawTagEditor(id, context) { if (Object.keys(_pendingChange).length === 0) { _pendingChange = null; + section.reRender(); return; }