mirror of
https://github.com/openwrt/luci.git
synced 2026-06-20 14:21:28 +04:00
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:
@@ -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') ])
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user