feat: add support for series
This commit is contained in:
@ -5,7 +5,7 @@ function addOptions(files) {
|
||||
defaultOpt.innerText = "----- Select a file -----"
|
||||
defaultOpt.value = ""
|
||||
select.appendChild(defaultOpt)
|
||||
files.forEach(file => {
|
||||
files.sort().forEach(file => {
|
||||
const option = document.createElement("option")
|
||||
option.innerText = file
|
||||
option.value = file
|
||||
|
Reference in New Issue
Block a user