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 a file in the Vuetify UI's
object browser would open an empty file preview dialog.

Change-Id: I5e21cf2e8c57911ac2708110f6ad23f376f86a54
  • Loading branch information
jewharton authored and Storj Robot committed Nov 2, 2023
1 parent 51c930f commit e482e12
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 e482e12

Please sign in to comment.