From 2e85a4a3d3ca9d55a71033680f5a168b6e93bcac Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 15 Jun 2020 18:18:00 +0200 Subject: [PATCH] Fixup Signed-off-by: Thomas Citharel --- js/src/types/event.model.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/src/types/event.model.ts b/js/src/types/event.model.ts index 02592eb49..2e5c22b0c 100644 --- a/js/src/types/event.model.ts +++ b/js/src/types/event.model.ts @@ -272,7 +272,6 @@ export class EventModel implements IEvent { this.title = hash.title; this.slug = hash.slug; this.description = hash.description; - this.category = hash.category; this.beginsOn = new Date(hash.beginsOn); if (hash.endsOn) this.endsOn = new Date(hash.endsOn); @@ -328,7 +327,6 @@ interface IEventEditJSON { id?: string; title: string; description: string; - category: Category | null; beginsOn: string; endsOn: string | null; status: EventStatus;