album: increase top matter inline count
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/767/head
parent
489d6ec749
commit
7e08319f78
|
@ -38,7 +38,7 @@
|
||||||
</NcActionRadio>
|
</NcActionRadio>
|
||||||
</NcActions>
|
</NcActions>
|
||||||
|
|
||||||
<NcActions :inline="1">
|
<NcActions :inline="isMobile ? 1 : 3">
|
||||||
<NcActionButton
|
<NcActionButton
|
||||||
:aria-label="t('memories', 'Create new album')"
|
:aria-label="t('memories', 'Create new album')"
|
||||||
@click="$refs.createModal.open(false)"
|
@click="$refs.createModal.open(false)"
|
||||||
|
@ -121,6 +121,7 @@ import SortIcon from 'vue-material-design-icons/SortVariant.vue';
|
||||||
import SlotAlphabeticalIcon from 'vue-material-design-icons/SortAlphabeticalAscending.vue';
|
import SlotAlphabeticalIcon from 'vue-material-design-icons/SortAlphabeticalAscending.vue';
|
||||||
import SortDateIcon from 'vue-material-design-icons/SortCalendarDescending.vue';
|
import SortDateIcon from 'vue-material-design-icons/SortCalendarDescending.vue';
|
||||||
import { API } from '../../services/API';
|
import { API } from '../../services/API';
|
||||||
|
import * as utils from '../../services/Utils';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'AlbumTopMatter',
|
name: 'AlbumTopMatter',
|
||||||
|
@ -160,6 +161,10 @@ export default defineComponent({
|
||||||
// Album name is displayed in the dynamic top matter (timeline)
|
// Album name is displayed in the dynamic top matter (timeline)
|
||||||
return this.$route.params.name ? '' : this.t('memories', 'Albums');
|
return this.$route.params.name ? '' : this.t('memories', 'Albums');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
isMobile(): boolean {
|
||||||
|
return utils.isMobile();
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
|
Loading…
Reference in New Issue