Skip to content

Commit 2e0f031

Browse files
authored
Merge pull request #2263 from nextcloud/backport/2262/stable28
[stable28] also fix additional place regarding album modal header
2 parents 3dcbbc5 + f91c01e commit 2e0f031

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

js/photos-main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/photos-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/photos-public.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/photos-public.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/photos-src_views_Albums_vue.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/photos-src_views_Albums_vue.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/views/Albums.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
</CollectionsList>
6161

6262
<NcModal v-if="showAlbumCreationForm"
63-
:name="t('photos', 'New album')"
6463
@close="showAlbumCreationForm = false">
64+
<h2 class="album-creation__heading">{{ t('photos', 'New album') }}</h2>
6565
<AlbumForm @done="handleAlbumCreated" />
6666
</NcModal>
6767
</div>
@@ -162,4 +162,10 @@ export default {
162162
text-overflow: ellipsis;
163163
}
164164
}
165+
166+
.album-creation__heading {
167+
padding: calc(var(--default-grid-baseline) * 4);
168+
margin-bottom: 0px;
169+
padding-bottom: 0px;
170+
}
165171
</style>

0 commit comments

Comments
 (0)