From 8716617898bd51adfa6eaa8cbc33d2905e9847f1 Mon Sep 17 00:00:00 2001 From: nineMangos Date: Sun, 28 Apr 2024 11:33:19 +0800 Subject: [PATCH] bugfix --- noname/ui/click/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noname/ui/click/index.js b/noname/ui/click/index.js index f3e66a5ef..680635d7a 100644 --- a/noname/ui/click/index.js +++ b/noname/ui/click/index.js @@ -2847,7 +2847,7 @@ export class Click { let index = ui.selected.targets.indexOf(this); for (let i = 0; i < targetprompt.length; i++) { const target = targets.find( - (cur) => cur.node.prompt && cur.node.prompt.innerText === targetprompt[i] + (cur) => cur.node.prompt && cur.node.prompt.innerHTML === targetprompt[i] ); if (target) { targets.remove(target);