mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-21 07:46:58 +02:00
Fixed validation-related linting errors
This commit is contained in:
@@ -105,10 +105,10 @@ export function uiEntityIssues(context) {
|
||||
return d.title;
|
||||
})
|
||||
.on('click', function(d) {
|
||||
d.action()
|
||||
d.action();
|
||||
});
|
||||
}
|
||||
})
|
||||
});
|
||||
|
||||
// Update
|
||||
items = items
|
||||
|
||||
@@ -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 = _;
|
||||
|
||||
@@ -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) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user