Skip to content

Commit

Permalink
Merge pull request #2214 from nextcloud/backport/2212/stable28
Browse files Browse the repository at this point in the history
[stable28] fix: glitch buttons on mobile
  • Loading branch information
ShGKme committed Dec 22, 2023
2 parents f3b9385 + 96fc39b commit bee68bc
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions js/photos-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-main.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/photos-public.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-public.js.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions src/views/Timeline.vue
Expand Up @@ -62,7 +62,7 @@
<template #icon>
<Plus />
</template>
<template v-if="!isMobile">
<template v-if="!isMobile" #default>
{{ t('photos', 'Add to album') }}
</template>
</NcButton>
Expand All @@ -73,7 +73,7 @@
<template #icon>
<Close />
</template>
<template v-if="!isMobile">
<template v-if="!isMobile" #default>
{{ t('photos', 'Unselect all') }}
</template>
</NcButton>
Expand Down Expand Up @@ -127,7 +127,9 @@
<NcModal v-if="showAlbumCreationForm"
key="albumCreationForm"
@close="showAlbumCreationForm = false">
<h2 class="timeline__heading">{{ t('photos', 'New album') }}</h2>
<h2 class="timeline__heading">
{{ t('photos', 'New album') }}
</h2>
<AlbumForm @done="showAlbumCreationForm = false" />
</NcModal>

Expand Down

0 comments on commit bee68bc

Please sign in to comment.