fix(web): remove json title from duplicate tool thumbnail (#27886)

This commit is contained in:
Mees Frensel
2026-04-17 14:37:04 +02:00
committed by GitHub
parent 2f8be45fe0
commit 18c0228f1b

View File

@@ -33,7 +33,6 @@
let { assets, asset, isSelected, onSelectAsset, onViewAsset }: Props = $props();
let isFromExternalLibrary = $derived(!!asset.libraryId);
let assetData = $derived(JSON.stringify(asset, null, 2));
let locationParts = $derived([asset.exifInfo?.city, asset.exifInfo?.state, asset.exifInfo?.country].filter(Boolean));
@@ -114,7 +113,6 @@
<img
src={getAssetMediaUrl({ id: asset.id })}
alt={$getAltText(toTimelineAsset(asset))}
title={assetData}
class="h-60 object-cover w-full rounded-t-md"
draggable="false"
/>