hotfix in selectFile

This commit is contained in:
InsanusMokrassar 2022-03-12 01:28:53 +06:00
parent 76813fae8e
commit 02520636ad
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,6 @@ fun selectFile(
(document.createElement("input") {
(this as HTMLInputElement).apply {
type = "file"
inputSetup(this)
onchange = {
runCatching {
files ?.get(0) ?: error("File must not be null")
@ -24,6 +23,7 @@ fun selectFile(
onFailure(it)
}
}
inputSetup(this)
}
} as HTMLElement).click()
}