CardBadges: Count checkboxes started with "+ [ ]"

Fixes #2187

Signed-off-by: Johannes Reiff <mail@jreiff.de>
This commit is contained in:
Johannes Reiff
2020-08-11 18:03:42 +02:00
committed by GitHub
parent 1afca3a2d4
commit e3ef1beee3

View File

@@ -52,10 +52,10 @@ export default {
},
computed: {
checkListCount() {
return (this.card.description.match(/^\s*(\*|-|(\d\.))\s+\[\s*(\s|x)\s*\](.*)$/gim) || []).length
return (this.card.description.match(/^\s*([*+-]|(\d\.))\s+\[\s*(\s|x)\s*\](.*)$/gim) || []).length
},
checkListCheckedCount() {
return (this.card.description.match(/^\s*(\*|-|(\d\.))\s+\[\s*x\s*\](.*)$/gim) || []).length
return (this.card.description.match(/^\s*([*+-]|(\d\.))\s+\[\s*x\s*\](.*)$/gim) || []).length
},
card() {
return this.$store.getters.cardById(this.id)