Skip to content

Commit d41a1b5

Browse files
committed
✨ p13n: add mandatory field to servicenavigator results
1 parent ed00f49 commit d41a1b5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

personalization-webcomponents/src/api/servicenavigator/ServiceNavigatorLookup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export interface SNService {
88
isExternal: boolean;
99
appointmentServiceUrl?: string;
1010
appointmentService?: boolean;
11+
mandatory?: boolean;
1112
}
1213

1314
export interface OnlineService {

personalization-webcomponents/src/checklist-preview.ce.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
<div>
2020
<b>{{ service.serviceName }} (ID: {{ service.id }})</b><br />
2121
<span>{{ service.summary }}</span
22-
><br /><br />
22+
><br />
23+
{{ service.mandatory ? "✅" : "❌" }} Verpflichtend <br /><br />
2324
<div v-if="service.onlineServices">
2425
<b>Online-Services:</b>
2526
<ul>

0 commit comments

Comments
 (0)