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 коммит произвёл GitHub
Родитель 1afca3a2d4
Коммит e3ef1beee3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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)