From 440c53735ce2aa2fdab332d83627224da70872cf Mon Sep 17 00:00:00 2001 From: SamVanini Date: Wed, 12 Mar 2025 20:47:15 +0100 Subject: [PATCH] fix(ui): consistent use of htmlTip in editor buttons #16933 --- ui/src/components/editor/editor-utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/editor/editor-utils.js b/ui/src/components/editor/editor-utils.js index 137d0a33bc8..41472a142c2 100644 --- a/ui/src/components/editor/editor-utils.js +++ b/ui/src/components/editor/editor-utils.js @@ -39,7 +39,7 @@ function getBtn (eVm, btn, clickHandler, active = false) { : null child.push( h(QTooltip, { delay: 1000 }, () => [ - h('div', { innerHTML: btn.tip }), + h('div', { innerHTML: btn.htmlTip != null ? btn.htmlTip : void 0, textContent: btn.tip != null ? btn.tip : void 0 }), Key ]) )