diff --git a/modules/dynamic/editors/states-editor.js b/modules/dynamic/editors/states-editor.js index 70a45017..df9173dd 100644 --- a/modules/dynamic/editors/states-editor.js +++ b/modules/dynamic/editors/states-editor.js @@ -1427,7 +1427,7 @@ function openStateMergeDialog() { if (element) { element.id = newId; element.dataset.state = rulingStateId; - element.dataset.i = newIndex; + element.dataset.id = newIndex; rulingStateArmy.appendChild(element); } }); diff --git a/modules/ui/editors.js b/modules/ui/editors.js index 58c1c18b..3b9181d1 100644 --- a/modules/ui/editors.js +++ b/modules/ui/editors.js @@ -1224,7 +1224,7 @@ function refreshAllEditors() { // dynamically loaded editors async function editStates() { if (customization) return; - const Editor = await import("../dynamic/editors/states-editor.js?v=1.96.06"); + const Editor = await import("../dynamic/editors/states-editor.js?v=1.97.06"); Editor.open(); } diff --git a/versioning.js b/versioning.js index 5f3d0848..1803ec02 100644 --- a/versioning.js +++ b/versioning.js @@ -1,7 +1,7 @@ "use strict"; // version and caching control -const version = "1.97.05"; // generator version, update each time +const version = "1.97.06"; // generator version, update each time { document.title += " v" + version;