From f7219f63149e56c32fba681a63d479f88c863f60 Mon Sep 17 00:00:00 2001 From: Azgaar Date: Fri, 20 May 2022 23:05:25 +0300 Subject: [PATCH] sorting is done above --- modules/dynamic/editors/states-editor.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/dynamic/editors/states-editor.js b/modules/dynamic/editors/states-editor.js index d8fb1eda..0516beb9 100644 --- a/modules/dynamic/editors/states-editor.js +++ b/modules/dynamic/editors/states-editor.js @@ -143,9 +143,6 @@ function addListeners() { byId("statesAdd").on("click", enterAddStateMode); byId("statesExport").on("click", downloadStatesCsv); - const $header = byId("statesHeader"); - $header.querySelectorAll(".sortable").forEach(element => element.on("click", () => sortLines(element))); - $body.on("click", event => { const $element = event.target; const classList = $element.classList;