client: fix undefined variable in drive component
All checks were successful
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/lint-backend Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-client Pipeline was successful
ci/woodpecker/push/lint-sw Pipeline was successful
ci/woodpecker/push/test Pipeline was successful

closes #360
This commit is contained in:
Johann150 2023-03-21 19:25:41 +01:00
parent 59da6063cb
commit 48363a90ef
Signed by: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

@ -364,7 +364,7 @@ function upload(file: File, folderToUpload?: foundkey.entities.DriveFolder | nul
}
function choose(choice: foundkey.entities.DriveFile | foundkey.entities.DriveFolder, extendSelection: boolean) {
const alreadySelected = selected.some(f => f.id === file.id);
const alreadySelected = selected.some(f => f.id === choice.id);
const action = (() => {
if (props.select != null) {