Merge pull request #1944 from nextcloud/refactor/navigation

This commit is contained in:
Julius Härtl
2020-05-29 15:46:11 +02:00
committed by GitHub
10 changed files with 266 additions and 284 deletions

View File

@@ -23,7 +23,7 @@
<template>
<div>
<div @click.stop.prevent>
<Actions v-if="canEdit">
<Actions v-if="canEdit && !isArchived">
<ActionButton v-if="showArchived === false" icon="icon-user" @click="assignCardToMe()">
{{ t('deck', 'Assign to me') }}
</ActionButton>
@@ -93,6 +93,7 @@ export default {
computed: {
...mapGetters([
'canEdit',
'isArchived',
]),
...mapState({
showArchived: state => state.showArchived,