Skip to content

Commit

Permalink
web/satellite/vuetify-poc: fix file preview
Browse files Browse the repository at this point in the history
This change fixes an issue where clicking on a file from the upload
snackbar would not preview it.

Issue: #6433

Change-Id: I30b0b6098e058d1069b87f99425fac5d6e421fea
  • Loading branch information
wilfred-asomanii committed Oct 27, 2023
1 parent 539253f commit 667b7c6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -416,7 +416,7 @@ function onFileClick(file: BrowserObject): void {
return;
}
obStore.setObjectPathForModal(file.path + file.Key);
obStore.setObjectPathForModal(file.path ?? '' + file.Key);
previewDialog.value = true;
isFileGuideShown.value = false;
LocalData.setFileGuideHidden();
Expand Down

0 comments on commit 667b7c6

Please sign in to comment.