From eb1c5d40f277f636e25e334bab69b210a08b7812 Mon Sep 17 00:00:00 2001 From: dcore94 Date: Thu, 6 Apr 2023 16:45:01 +0200 Subject: [PATCH] add category hints from methodlist --- ccp/js/methodeditorcontroller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccp/js/methodeditorcontroller.js b/ccp/js/methodeditorcontroller.js index 1923476..cf95ad6 100644 --- a/ccp/js/methodeditorcontroller.js +++ b/ccp/js/methodeditorcontroller.js @@ -586,7 +586,7 @@ class CCPMethodEditorController extends HTMLElement{ ev.stopPropagation() const val = ev.target.value ev.target.value = null - if(this.#current.metadata.filter().length === 0){ + if(this.#current.metadata.filter(md=>md.role === "category").length === 0){ this.#current.metadata.push({ role : "category", title : val}) } }