File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
personalization-webcomponents/src/components Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 46
46
import type DummyChecklist from " @/api/dummyservice/DummyChecklist.ts" ;
47
47
48
48
import { MucIntro } from " @muenchen/muc-patternlab-vue" ;
49
- import {computed , onMounted } from " vue" ;
49
+ import { computed , onMounted } from " vue" ;
50
50
51
51
import MucChip from " @/components/common/muc-chip.vue" ;
52
52
import { getChecklistIconByTitle } from " @/util/constants.ts" ;
@@ -56,11 +56,13 @@ const props = defineProps<{
56
56
}>();
57
57
58
58
onMounted (() => {
59
- const element = document .querySelector (' [data-fragment-placeholder="breadcrumb-label"]' );
59
+ const element = document .querySelector (
60
+ ' [data-fragment-placeholder="breadcrumb-label"]'
61
+ );
60
62
if (element ) {
61
63
element .innerHTML = props .checklist .title ;
62
64
}
63
- })
65
+ });
64
66
65
67
const todoCount = computed (() => {
66
68
return props .checklist .items .filter ((value ) => ! value .checked ).length ;
@@ -71,7 +73,6 @@ const doneCount = computed(() => {
71
73
});
72
74
</script >
73
75
<style >
74
-
75
76
.muc-divider {
76
77
margin-top : 0 !important ;
77
78
margin-bottom : 32px !important ;
You can’t perform that action at this time.
0 commit comments