diff --git a/src/components/cards/CardBadges.vue b/src/components/cards/CardBadges.vue index 71d14c442..cdef86f03 100644 --- a/src/components/cards/CardBadges.vue +++ b/src/components/cards/CardBadges.vue @@ -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)