fix(web): revert descriptions (#6582)

fix: revert descriptions
This commit is contained in:
martin
2024-01-23 03:53:56 +01:00
committed by GitHub
parent 773d093ace
commit 234a95960b
3 changed files with 23 additions and 14 deletions

View File

@@ -159,9 +159,13 @@
{/if}
<!-- ALBUM DESCRIPTION -->
<p class="mb-12 mt-6 w-full pb-2 text-left text-lg font-medium dark:text-gray-300">
{album.description}
</p>
{#if album.description}
<p
class="whitespace-pre-line mb-12 mt-6 w-full pb-2 text-left font-medium text-base text-black dark:text-gray-300"
>
{album.description}
</p>
{/if}
</section>
</AssetGrid>
<UpdatePanel {assetStore} />