File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed
personalization-webcomponents/src/components Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<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 =" "
7
7
>
8
8
<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] }}
10
11
</div >
11
12
<table >
12
13
<tr >
13
14
<td class =" task" >Aufgaben:</td >
14
15
<td >
15
16
<div class =" chips-container" >
16
17
<muc-chip
17
- v-if =" todoCount"
18
- background-color =" #FDD1AC"
18
+ v-if =" todoCount"
19
+ background-color =" #FDD1AC"
19
20
>
20
21
{{ todoCount }} offen
21
22
<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"
25
26
>
26
27
<use href =" #icon-pencil" />
27
28
</svg >
28
29
</muc-chip >
29
30
<muc-chip
30
- v-if =" doneCount"
31
- background-color =" #B7D2B7"
31
+ v-if =" doneCount"
32
+ background-color =" #B7D2B7"
32
33
>
33
34
{{ doneCount }} erledigt
34
35
<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"
38
39
>
39
40
<use href =" #icon-check" />
40
41
</svg >
@@ -118,5 +119,4 @@ const doneCount = computed(() => {
118
119
gap : 8px ;
119
120
}
120
121
}
121
-
122
- </style >
122
+ </style >
You can’t perform that action at this time.
0 commit comments