diff --git a/src/components/tasks/partials/checklist-summary.vue b/src/components/tasks/partials/checklist-summary.vue
index 830fc109..5d501bb2 100644
--- a/src/components/tasks/partials/checklist-summary.vue
+++ b/src/components/tasks/partials/checklist-summary.vue
@@ -5,37 +5,40 @@
-
- {{ $t(checklist.total === checklist.checked ? 'task.checklistAllDone' : 'task.checklistTotal', checklist) }}
-
+ {{ label }}
-
@@ -47,18 +50,20 @@ export default defineComponent({
padding-left: .5rem;
font-size: .9rem;
- svg {
- transform: rotate(-90deg);
- transition: stroke-dashoffset 0.35s;
- margin-right: .25rem;
+}
- circle {
- stroke: var(--grey-400);
+svg {
+ transform: rotate(-90deg);
+ transition: stroke-dashoffset 0.35s;
+ margin-right: .25rem;
- &:last-child {
- stroke: var(--primary);
- }
- }
+}
+
+circle {
+ stroke: var(--grey-400);
+
+ &:last-child {
+ stroke: var(--primary);
}
}
\ No newline at end of file