disable Create card button while no stack is chosen

make the `isBoardAndStackChoosen` method do what it says

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman
2022-08-30 14:40:05 +02:00
parent 56e3215785
commit 89d46dcab4

View File

@@ -137,7 +137,7 @@ export default {
}, },
computed: { computed: {
isBoardAndStackChoosen() { isBoardAndStackChoosen() {
return !(this.selectedBoard === '') return !(this.selectedBoard === '' || this.selectedStack === '')
}, },
}, },
beforeMount() { beforeMount() {