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-09-02 11:12:48 +00:00
committed by backportbot-nextcloud[bot]
parent 5befacc95e
commit c3a5898271
+1 -1
View File
@@ -137,7 +137,7 @@ export default {
},
computed: {
isBoardAndStackChoosen() {
return !(this.selectedBoard === '')
return !(this.selectedBoard === '' || this.selectedStack === '')
},
},
beforeMount() {