From 3844e008ba909938a4cf1a1aeb0370d2f2aaa349 Mon Sep 17 00:00:00 2001 From: Florian Scholdei Date: Thu, 4 Jul 2019 16:33:44 +0200 Subject: [PATCH] corrected Plugin ui-type --- scm-ui-components/packages/ui-types/src/Plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scm-ui-components/packages/ui-types/src/Plugin.js b/scm-ui-components/packages/ui-types/src/Plugin.js index 566d52e76a..bb9c5e7d88 100644 --- a/scm-ui-components/packages/ui-types/src/Plugin.js +++ b/scm-ui-components/packages/ui-types/src/Plugin.js @@ -4,9 +4,9 @@ import type { Collection, Links } from "./hal"; export type Plugin = { name: string, type: string, + version: string, + author: string, description?: string, - creationDate?: string, - lastModified?: string, _links: Links };