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
committed by backportbot-nextcloud[bot]
parent 5befacc95e
commit c3a5898271

View File

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