Work on event create/edit page

This commit is contained in:
Jan Tuomi
2020-02-22 19:59:06 +02:00
parent 1411685bbd
commit 37822aaaf8
7 changed files with 125 additions and 32 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ export interface Event {
start_time: string;
end_time: string;
tags: Tag[];
tag_id: number[];
tag_id?: number[];
visible: boolean;
signup_id: number[];
signupForm: SignupForm[];
+2 -1
View File
@@ -4,7 +4,8 @@ const url = `${process.env.API_URL}/tags/`;
export interface Tag {
id: number;
name: string;
name_fi: string;
name_en: string;
slug: string;
icon: string;
}