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 <dwfreed@mtu.edu>
This commit is contained in:
Doug Freed
2025-04-23 16:43:14 -05:00
committed by Doug Freed
parent 1f50dea160
commit c71dbb61ca
@@ -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') ])
);
}