Skip to content

Commit

Permalink
fix download icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Dec 30, 2024
1 parent b9f9b31 commit 363797b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/js/components/forms/album/AlbumShare.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="w-1/2 flex justify-around items-center">
<i class="pi pi-eye" v-tooltip.top="'Grants read access'" />
<i class="pi pi-window-maximize" v-tooltip.top="'Grants original photo access'" />
<i class="pi pi-download" v-tooltip.top="'Grants download'" />
<i class="pi pi-cloud-download" v-tooltip.top="'Grants download'" />
<i class="pi pi-upload" v-tooltip.top="'Grants upload'" />
<i class="pi pi-file-edit" v-tooltip.top="'Grants edit'" />
<i class="pi pi-trash" v-tooltip.top="'Grants delete'" />
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/gallery/AlbumHero.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
:title="$t('lychee.DOWNLOAD_ALBUM')"
@click="download"
>
<i class="pi pi-download" />
<i class="pi pi-cloud-download" />
</a>
<a
v-if="props.album.rights.can_share"
Expand Down
2 changes: 1 addition & 1 deletion resources/js/views/Sharing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<div class="w-1/2 flex items-center justify-around">
<i class="pi pi-eye" v-tooltip.top="'Grants read access'" />
<i class="pi pi-window-maximize" v-tooltip.top="'Grants full photo access'" />
<i class="pi pi-download" v-tooltip.top="'Grants download'" />
<i class="pi pi-cloud-download" v-tooltip.top="'Grants download'" />
<i class="pi pi-upload" v-tooltip.top="'Grants upload'" />
<i class="pi pi-file-edit" v-tooltip.top="'Grants edit'" />
<i class="pi pi-trash" v-tooltip.top="'Grants delete'" />
Expand Down

0 comments on commit 363797b

Please sign in to comment.