mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05:00
fix(web): add labels to memory lane buttons (#16664)
* fix(web): add labels to memory lane buttons * use generic button labels
This commit is contained in:
parent
bdabea4030
commit
097749d872
1 changed files with 6 additions and 2 deletions
|
@ -50,9 +50,11 @@
|
|||
<button
|
||||
type="button"
|
||||
class="rounded-full border border-gray-500 bg-gray-100 p-2 text-gray-500 opacity-50 hover:opacity-100"
|
||||
title={$t('previous')}
|
||||
aria-label={$t('previous')}
|
||||
onclick={scrollLeft}
|
||||
>
|
||||
<Icon path={mdiChevronLeft} size="36" /></button
|
||||
<Icon path={mdiChevronLeft} size="36" ariaLabel={$t('previous')} /></button
|
||||
>
|
||||
</div>
|
||||
{/if}
|
||||
|
@ -61,9 +63,11 @@
|
|||
<button
|
||||
type="button"
|
||||
class="rounded-full border border-gray-500 bg-gray-100 p-2 text-gray-500 opacity-50 hover:opacity-100"
|
||||
title={$t('next')}
|
||||
aria-label={$t('next')}
|
||||
onclick={scrollRight}
|
||||
>
|
||||
<Icon path={mdiChevronRight} size="36" /></button
|
||||
<Icon path={mdiChevronRight} size="36" ariaLabel={$t('next')} /></button
|
||||
>
|
||||
</div>
|
||||
{/if}
|
||||
|
|
Loading…
Add table
Reference in a new issue