Fix locator dropdown list
This commit is contained in:
parent
8c4e191e63
commit
049d096e4d
@ -794,7 +794,9 @@ Interface.definePanels(function() {
|
||||
updateLocatorSuggestionList() {
|
||||
locator_suggestion_list.innerHTML = '';
|
||||
Locator.all.forEach(locator => {
|
||||
locator_suggestion_list.append(`<option value="${locator.name}">`);
|
||||
let option = document.createElement('option');
|
||||
option.value = locator.name;
|
||||
locator_suggestion_list.append(option);
|
||||
})
|
||||
},
|
||||
focusAxis(axis) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user