Fixed validation-related linting errors

This commit is contained in:
Quincy Morgan
2018-12-21 14:08:35 -05:00
parent e7180b1c96
commit dc3a42f33d
3 changed files with 5 additions and 9 deletions
+2 -2
View File
@@ -105,10 +105,10 @@ export function uiEntityIssues(context) {
return d.title;
})
.on('click', function(d) {
d.action()
d.action();
});
}
})
});
// Update
items = items
+3 -4
View File
@@ -78,8 +78,7 @@ export function uiInspector(context) {
presetPane
.call(presetList.preset(preset).autofocus(true));
}
};
inspector.setPreset = function(preset) {
wrap.transition()
@@ -87,12 +86,12 @@ export function uiInspector(context) {
editorPane
.call(entityEditor.preset(preset));
}
};
}
inspector.showList = function() {};
inspector.setPreset = function() {};
inspector.state = function(_) {
if (!arguments.length) return _state;
_state = _;
-3
View File
@@ -10,9 +10,6 @@ import {
validationIssueFix
} from './validation_issue';
import { operationDelete } from '../operations/index';
import {
select as d3_select
} from 'd3-selection';
export function validationMissingTag(context) {