Skip to content

Commit dbdb095

Browse files
authored
💄 use correct icons for checklist types (#94)
* 💄 use correct icons for checklist types * 💚 fix linter
1 parent 4f908e6 commit dbdb095

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

personalization-webcomponents/src/components/ChecklistCard.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ function gotoChecklist(checklistId: string) {
106106
<style scoped>
107107
.card-header-icon {
108108
margin-right: 16px;
109-
border: 1px solid var(--color-neutrals-blue);
110-
border-radius: 50%;
111109
}
112110
113111
.pt-8 {

personalization-webcomponents/src/util/constants.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ export const QUERY_PARAM_CHECKLIST_ID = "cl-id";
44

55
export function getChecklistIconByTitle(checklistTitle: string) {
66
return {
7-
"Ich habe wenig Geld.": "./assets/img/placeholder_checklist_icon.png",
8-
"Ich will umziehen.": "./assets/img/placeholder_checklist_icon.png",
9-
"Ich manage eine Familie.": "./assets/img/placeholder_checklist_icon.png",
7+
"Ich habe wenig Geld.":
8+
"https://stadt.muenchen.de/dam/Home/lhm_common/service-navigator/10482730.svg",
9+
"Ich will umziehen.":
10+
"https://stadt.muenchen.de/dam/Home/lhm_common/service-navigator/10482700.svg",
11+
"Ich manage eine Familie.":
12+
"https://stadt.muenchen.de/dam/Home/lhm_common/service-navigator/10483310.svg",
13+
Einwanderung:
14+
"https://stadt.muenchen.de/dam/Home/lhm_common/service-navigator/10483311.svg",
1015
}[checklistTitle];
1116
}

0 commit comments

Comments
 (0)