From 3549e5f65fc3dd2aaa6f48870ea71c45267c5831 Mon Sep 17 00:00:00 2001 From: gkolokythas Date: Wed, 31 Jul 2019 10:41:49 +0300 Subject: [PATCH] Fixes bug on Dataset Template model of DMP not incuding description. --- dmp-frontend/src/app/core/model/dmp-profile/dmp-profile.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dmp-frontend/src/app/core/model/dmp-profile/dmp-profile.ts b/dmp-frontend/src/app/core/model/dmp-profile/dmp-profile.ts index 0d40aa85d..baad4115f 100644 --- a/dmp-frontend/src/app/core/model/dmp-profile/dmp-profile.ts +++ b/dmp-frontend/src/app/core/model/dmp-profile/dmp-profile.ts @@ -8,8 +8,9 @@ export interface DmpProfile { status: number; created: Date; modified: Date; + description: string; } export interface DmpProfileDefinition { fields: DmpProfileField[]; -} \ No newline at end of file +}