From c71dbb61cab43df93a7cf3a15394aea751d3e99f Mon Sep 17 00:00:00 2001 From: Doug Freed Date: Wed, 23 Apr 2025 16:43:14 -0500 Subject: [PATCH] luci-base: remove bad Unicode on clone button This Unicode character is intended to be followed by 2 more characters which are combined. It's entirely unnecessary, so just remove it. Fixes: #7754 Signed-off-by: Doug Freed --- modules/luci-base/htdocs/luci-static/resources/form.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index c9af17f1b3..4c7cbce69d 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -2728,11 +2728,11 @@ const CBITableSection = CBITypedSection.extend(/** @lends LuCI.form.TableSection dom.append(tdEl.lastElementChild, E('button', { - 'title': btn_title || _('Clone') + '⿻', + 'title': btn_title || _('Clone'), 'class': 'btn cbi-button cbi-button-neutral', 'click': ui.createHandlerFn(this, 'handleClone', section_id, true), 'disabled': this.map.readonly || null - }, [ btn_title || _('Clone') + '⿻' ]) + }, [ btn_title || _('Clone') ]) ); }