Skip to content

Commit

Permalink
fix(web): multiple small issues on the web app (#5875)
Browse files Browse the repository at this point in the history
  • Loading branch information
martabal committed Jan 9, 2024
1 parent dcd2a74 commit 0583bba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
isOpacity={true}
icon={asset.isFavorite ? mdiHeart : mdiHeartOutline}
on:click={() => dispatch('favorite')}
title="Favorite"
title={asset.isFavorite ? 'Unfavorite' : 'Favorite'}
/>
{/if}

Expand Down
2 changes: 1 addition & 1 deletion web/src/lib/components/asset-viewer/asset-viewer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@
id="stack-slideshow"
class="z-[1005] flex place-item-center place-content-center absolute bottom-0 w-full col-span-4 col-start-1 mb-1 overflow-x-auto horizontal-scrollbar"
>
<div class="relative whitespace-nowrap transition-all">
<div class="relative w-full whitespace-nowrap transition-all">
{#each $stackAssetsStore as stackedAsset (stackedAsset.id)}
<div
class="{stackedAsset.id == asset.id
Expand Down

0 comments on commit 0583bba

Please sign in to comment.