Skip to content

Commit 70667b6

Browse files
author
Dominik Grenz
committed
run linter
1 parent 50157f8 commit 70667b6

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

personalization-webcomponents/src/components/ChecklistHeader.vue

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
11
<template>
22
<muc-intro
3-
tagline="Checkliste"
4-
:title="checklist.title"
5-
:img="getChecklistIconByTitle(checklist.title)"
6-
imgAlt=""
3+
tagline="Checkliste"
4+
:title="checklist.title"
5+
:img="getChecklistIconByTitle(checklist.title)"
6+
imgAlt=""
77
>
88
<div style="padding-bottom: 16px; padding-left: 3px">
9-
<b>Erstellungsdatum: </b>{{ props.checklist.lastUpdated.toLocaleString().split(",")[0] }}
9+
<b>Erstellungsdatum: </b
10+
>{{ props.checklist.lastUpdated.toLocaleString().split(",")[0] }}
1011
</div>
1112
<table>
1213
<tr>
1314
<td class="task">Aufgaben:</td>
1415
<td>
1516
<div class="chips-container">
1617
<muc-chip
17-
v-if="todoCount"
18-
background-color="#FDD1AC"
18+
v-if="todoCount"
19+
background-color="#FDD1AC"
1920
>
2021
{{ todoCount }} offen
2122
<svg
22-
style="margin-left: 8px; width: 20px; height: 20px"
23-
aria-hidden="true"
24-
class="m-button__icon"
23+
style="margin-left: 8px; width: 20px; height: 20px"
24+
aria-hidden="true"
25+
class="m-button__icon"
2526
>
2627
<use href="#icon-pencil" />
2728
</svg>
2829
</muc-chip>
2930
<muc-chip
30-
v-if="doneCount"
31-
background-color="#B7D2B7"
31+
v-if="doneCount"
32+
background-color="#B7D2B7"
3233
>
3334
{{ doneCount }} erledigt
3435
<svg
35-
style="margin-left: 8px; width: 20px; height: 20px"
36-
aria-hidden="true"
37-
class="m-button__icon"
36+
style="margin-left: 8px; width: 20px; height: 20px"
37+
aria-hidden="true"
38+
class="m-button__icon"
3839
>
3940
<use href="#icon-check" />
4041
</svg>
@@ -118,5 +119,4 @@ const doneCount = computed(() => {
118119
gap: 8px;
119120
}
120121
}
121-
122-
</style>
122+
</style>

0 commit comments

Comments
 (0)