This commit is contained in:
Russell Tan 2023-12-06 12:30:41 +01:00 committed by GitHub
commit 588e7098fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,6 +87,12 @@
unsubscribe();
});
const handleNewAsset = (newAsset: AssetResponseDto) => {
description = newAsset?.exifInfo?.description || '';
};
$: handleNewAsset(asset);
const dispatch = createEventDispatcher();
const getMegapixel = (width: number, height: number): number | undefined => {