Browse Source

Revert "fix(web): Assigns description text area with asset description if it exists #4073 (#4125)" (#4160)

This reverts commit b6c6a7e403c51b767d5a52c3875610db4420b38a.
martin 1 year ago
parent
commit
06959a9ea5
1 changed files with 0 additions and 4 deletions
  1. 0 4
      web/src/lib/components/asset-viewer/detail-panel.svelte

+ 0 - 4
web/src/lib/components/asset-viewer/detail-panel.svelte

@@ -25,10 +25,6 @@
   $: isOwner = $page?.data?.user?.id === asset.ownerId;
 
   $: {
-    if (textarea) {
-      textarea.value = asset?.exifInfo?.description || '';
-    }
-
     // Get latest description from server
     if (asset.id && !api.isSharedLink) {
       api.assetApi.getAssetById({ id: asset.id }).then((res) => {