small fixes

Signed-off-by: Jakob <jakob.roehrl@web.de>
This commit is contained in:
Jakob
2019-08-09 12:56:35 +02:00
committed by Julius Härtl
parent 39ae9332e2
commit 097bb21b45
8 changed files with 52 additions and 44 deletions

View File

@@ -38,8 +38,6 @@
</multiselect>
<p>Assign to user</p>
assignd:
{{ copiedCard.assignedUsers }}
<multiselect v-model="assignedUsers" :multiple="true" :options="assignableUsers"
label="displayname"
track-by="primaryKey"
@@ -67,6 +65,9 @@
</AppSidebarTab>
<AppSidebarTab name="Attachments" icon="icon-files-dark">
{{ currentCard.attachments }}
<button class="icon-upload" @click="clickAddNewAttachmment()">
{{ t('deck', 'Upload attachment') }}
</button>
</AppSidebarTab>
<AppSidebarTab name="Timeline" icon="icon-activity">
this is the activity tab
@@ -190,7 +191,11 @@ export default {
labelId: removedLabel.id
}
this.$store.dispatch('removeLabel', data)
},
clickAddNewAttachmment() {
}
}
}
</script>