mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-31 04:32:06 +08:00
Fix hound issues [SCI-7625]
This commit is contained in:
parent
dc333f77d5
commit
b0505adc4d
1 changed files with 2 additions and 4 deletions
|
@ -873,12 +873,10 @@ var dropdownSelector = (function() {
|
|||
}
|
||||
|
||||
function appendOptionToSelector(selector, value) {
|
||||
$(selector).append(
|
||||
`<option
|
||||
$(selector).append(`<option
|
||||
data-params=${JSON.stringify(value.params)}
|
||||
value='${value.value}'
|
||||
>${value.label}</option>`
|
||||
);
|
||||
>${value.label}</option>`);
|
||||
}
|
||||
|
||||
function removeOptionFromSelector(selector, id) {
|
||||
|
|
Loading…
Reference in a new issue