Enable removing multicombo field values with keyboard (re: #8004)

This commit is contained in:
Quincy Morgan
2020-09-28 15:03:29 -04:00
parent f9fcc03e20
commit 087e7eac14
+2
View File
@@ -317,6 +317,7 @@ export function uiFieldCombo(field, context) {
function removeMultikey(d) {
d3_event.preventDefault();
d3_event.stopPropagation();
var t = {};
if (_isMulti) {
@@ -543,6 +544,7 @@ export function uiFieldCombo(field, context) {
.html(function(d) { return d.value; });
chips.select('a')
.attr('href', '#')
.on('click', removeMultikey)
.attr('class', 'remove')
.html('×');