From: Doug Freed Date: Wed, 23 Apr 2025 21:43:14 +0000 (-0500) Subject: luci-base: remove bad Unicode on clone button X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=c71dbb61cab43df93a7cf3a15394aea751d3e99f;p=openwrt-luci.git 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 --- 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') ]) ); }