config: fix use of removed props
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/653/head
parent
f7d7693bf4
commit
0ce08c82fe
|
@ -186,7 +186,7 @@ export default defineComponent({
|
|||
name: t('memories', 'Add to album'),
|
||||
icon: AlbumsIcon,
|
||||
callback: this.addToAlbum.bind(this),
|
||||
if: (self: any) => self.config_albumsEnabled && !self.routeIsAlbum(),
|
||||
if: (self: any) => self.config.albums_enabled && !self.routeIsAlbum(),
|
||||
},
|
||||
{
|
||||
name: t('memories', 'Move to person'),
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<EditDate ref="editDate" :photos="photos" />
|
||||
</div>
|
||||
|
||||
<div v-if="config_tagsEnabled && sections.includes(2)">
|
||||
<div v-if="config.systemtags_enabled && sections.includes(2)">
|
||||
<div class="title-text">
|
||||
{{ t('memories', 'Collaborative Tags') }}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue