Skip to content

Commit

Permalink
Merge pull request #2263 from nextcloud/backport/2262/stable28
Browse files Browse the repository at this point in the history
[stable28] also fix additional place regarding album modal header
  • Loading branch information
Altahrim authored Jan 22, 2024
2 parents 3dcbbc5 + f91c01e commit 2e0f031
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 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.

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.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion src/views/Albums.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
</CollectionsList>

<NcModal v-if="showAlbumCreationForm"
:name="t('photos', 'New album')"
@close="showAlbumCreationForm = false">
<h2 class="album-creation__heading">{{ t('photos', 'New album') }}</h2>
<AlbumForm @done="handleAlbumCreated" />
</NcModal>
</div>
Expand Down Expand Up @@ -162,4 +162,10 @@ export default {
text-overflow: ellipsis;
}
}
.album-creation__heading {
padding: calc(var(--default-grid-baseline) * 4);
margin-bottom: 0px;
padding-bottom: 0px;
}
</style>

0 comments on commit 2e0f031

Please sign in to comment.