From f3cc44edd9a9bf882a0234727c8e46385b72a633 Mon Sep 17 00:00:00 2001 From: Flominatortm Date: Fri, 27 Dec 2024 19:53:38 +0100 Subject: [PATCH] fix Category Management now works with Category Display option "list" --- src/features/categoryDisplay/categoryDisplay.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/features/categoryDisplay/categoryDisplay.js b/src/features/categoryDisplay/categoryDisplay.js index 34c1a75e..8f77f9af 100644 --- a/src/features/categoryDisplay/categoryDisplay.js +++ b/src/features/categoryDisplay/categoryDisplay.js @@ -27,7 +27,8 @@ async function moveCategories() { return `
    ${listCats}
`; }); $("#categories span").replaceWith(function () { - return `
  • ${this.innerHTML}
  • `; + //span needed for feature Category Management to find the categories within the div + return `
  • ${this.innerHTML}
  • `; }); break; }