This commit is contained in:
Timothy J. Baek 2024-06-19 14:56:51 -07:00
parent ab270c1682
commit e3668a2f1c
1 changed files with 1 additions and 6 deletions

View File

@ -104,12 +104,7 @@
type="button" type="button"
on:click={async () => { on:click={async () => {
if (file?.url) { if (file?.url) {
getFileContentById(file.id).then((blob) => { window.open(`${file?.url}/content`, '_blank').focus();
if (blob) {
const url = URL.createObjectURL(blob);
window.open(url, '_blank').focus();
}
});
} }
}} }}
> >