client: fix undefined variable in drive component

closes FoundKeyGang/FoundKey#360
This commit is contained in:
Johann150 2023-03-21 19:25:41 +01:00
parent 59da6063cb
commit 48363a90ef
Signed by untrusted user: 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) {