Fix crash when deleting rows in raw tag editor

(closes #5840)

This didn't always trigger a crash, but it can.  It attempted to remove the
row containing the key/value input fields, however this ilne is unnecessary
because the change event will trigger a redraw and d3 will handle the removing
milliseconds later.
This commit is contained in:
Bryan Housel
2019-02-07 13:48:29 -05:00
parent d2735ab40c
commit 2aa409d5a9
-1
View File
@@ -347,7 +347,6 @@ export function uiRawTagEditor(context) {
var t = {};
t[d.key] = undefined;
dispatch.call('change', this, t);
d3_select(this.parentNode).remove();
}