Skip to content

Commit 3d627c6

Browse files
author
Dominik Grenz
committed
Run prettier
1 parent cd83485 commit 3d627c6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

personalization-webcomponents/src/components/ChecklistHeader.vue

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
import type DummyChecklist from "@/api/dummyservice/DummyChecklist.ts";
4747
4848
import { MucIntro } from "@muenchen/muc-patternlab-vue";
49-
import {computed, onMounted} from "vue";
49+
import { computed, onMounted } from "vue";
5050
5151
import MucChip from "@/components/common/muc-chip.vue";
5252
import { getChecklistIconByTitle } from "@/util/constants.ts";
@@ -56,11 +56,13 @@ const props = defineProps<{
5656
}>();
5757
5858
onMounted(() => {
59-
const element = document.querySelector('[data-fragment-placeholder="breadcrumb-label"]');
59+
const element = document.querySelector(
60+
'[data-fragment-placeholder="breadcrumb-label"]'
61+
);
6062
if (element) {
6163
element.innerHTML = props.checklist.title;
6264
}
63-
})
65+
});
6466
6567
const todoCount = computed(() => {
6668
return props.checklist.items.filter((value) => !value.checked).length;
@@ -71,7 +73,6 @@ const doneCount = computed(() => {
7173
});
7274
</script>
7375
<style>
74-
7576
.muc-divider {
7677
margin-top: 0 !important;
7778
margin-bottom: 32px !important;

0 commit comments

Comments
 (0)