We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed00f49 commit d41a1b5Copy full SHA for d41a1b5
personalization-webcomponents/src/api/servicenavigator/ServiceNavigatorLookup.ts
@@ -8,6 +8,7 @@ export interface SNService {
8
isExternal: boolean;
9
appointmentServiceUrl?: string;
10
appointmentService?: boolean;
11
+ mandatory?: boolean;
12
}
13
14
export interface OnlineService {
personalization-webcomponents/src/checklist-preview.ce.vue
@@ -19,7 +19,8 @@
19
<div>
20
<b>{{ service.serviceName }} (ID: {{ service.id }})</b><br />
21
<span>{{ service.summary }}</span
22
- ><br /><br />
+ ><br />
23
+ {{ service.mandatory ? "✅" : "❌" }} Verpflichtend <br /><br />
24
<div v-if="service.onlineServices">
25
<b>Online-Services:</b>
26
<ul>
0 commit comments