From aada08b808d52903b325c4c9facd6232e2226833 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Wed, 4 Dec 2024 10:14:17 +0100 Subject: [PATCH] OZG-6477 small fix --- .../collaboration-shared/src/lib/collaboration.model.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alfa-client/libs/collaboration-shared/src/lib/collaboration.model.ts b/alfa-client/libs/collaboration-shared/src/lib/collaboration.model.ts index 8f6640e0ee..ef9cfa6bd9 100644 --- a/alfa-client/libs/collaboration-shared/src/lib/collaboration.model.ts +++ b/alfa-client/libs/collaboration-shared/src/lib/collaboration.model.ts @@ -5,12 +5,12 @@ export interface Collaboration { titel: string; beschreibung: string; zustaendigeStelle: ResourceUri; - collaborationLevel?: typeof CollaborationLevels[keyof typeof CollaborationLevels]; + collaborationLevel?: (typeof CollaborationLevels)[keyof typeof CollaborationLevels]; } export class CollaborationLevels { - public static readonly ORGANISATIONS_EINHEIT = "1"; - public static readonly EXTERNE_FACHSTELLE = "4"; + public static readonly ORGANISATIONS_EINHEIT = 1; + public static readonly EXTERNE_FACHSTELLE = 4; } export interface CollaborationResource extends Collaboration, Resource, ListItemResource {} -- GitLab