Merge pull request #1708 from ishantgupta777/fixed_cards_in_archive_view

fixed cards getting added in archive view and closes #1682
This commit is contained in:
Julius Härtl
2020-04-17 11:34:55 +02:00
committed by GitHub

View File

@@ -28,7 +28,7 @@
<h2><a href="#">{{ board.title }}</a></h2> <h2><a href="#">{{ board.title }}</a></h2>
</div> </div>
<div v-if="board" class="board-actions"> <div v-if="board" class="board-actions">
<div v-if="canManage" id="stack-add" v-click-outside="hideAddStack"> <div v-if="canManage && !showArchived" id="stack-add" v-click-outside="hideAddStack">
<Actions v-if="!isAddStackVisible"> <Actions v-if="!isAddStackVisible">
<ActionButton icon="icon-add" :title="t('deck', 'Add new list')" @click.stop="showAddStack" /> <ActionButton icon="icon-add" :title="t('deck', 'Add new list')" @click.stop="showAddStack" />
</Actions> </Actions>