[ARVADOS-WORKBENCH2] updated: 1.2.0-1003-g028b8ca

Git user git at public.curoverse.com
Tue Nov 27 06:35:32 EST 2018


Summary of changes:
 src/models/vocabulary.ts                    | 2 +-
 src/store/vocabulary/vocabulary-selctors.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

       via  028b8ca12dbf19c890c2337894b88e7f23a5e97d (commit)
      from  612cc2f292c66f073e464ae321e389bb96ef1a04 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 028b8ca12dbf19c890c2337894b88e7f23a5e97d
Author: Michal Klobukowski <michal.klobukowski at contractors.roche.com>
Date:   Tue Nov 27 12:14:47 2018 +0100

    Fix vocabulary tags fiel type
    
    Feature #14393
    
    Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski at contractors.roche.com>

diff --git a/src/models/vocabulary.ts b/src/models/vocabulary.ts
index c1c3c1e..363c177 100644
--- a/src/models/vocabulary.ts
+++ b/src/models/vocabulary.ts
@@ -6,7 +6,7 @@ import { isObject, has, every } from 'lodash/fp';
 
 export interface Vocabulary {
     strict: boolean;
-    tags: Tag[];
+    tags: Record<string, Tag>;
 }
 
 export interface Tag {
diff --git a/src/store/vocabulary/vocabulary-selctors.ts b/src/store/vocabulary/vocabulary-selctors.ts
index 3bb1e50..d317cb4 100644
--- a/src/store/vocabulary/vocabulary-selctors.ts
+++ b/src/store/vocabulary/vocabulary-selctors.ts
@@ -9,7 +9,7 @@ export const VOCABULARY_PROPERTY_NAME = 'vocabulary';
 
 export const DEFAULT_VOCABULARY: Vocabulary = {
     strict: false,
-    tags: [],
+    tags: {},
 };
 
 export const getVocabulary = (state: PropertiesState) =>

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list