diff --git a/utils/staticAutoComplete/ISVocabularies.service.ts b/utils/staticAutoComplete/ISVocabularies.service.ts index 34c18f80..c9e00db5 100644 --- a/utils/staticAutoComplete/ISVocabularies.service.ts +++ b/utils/staticAutoComplete/ISVocabularies.service.ts @@ -33,7 +33,10 @@ export class ISVocabulariesService { vocabulary = "dnet:dataCite_resource.json"; return this.getVocabularyFromService(vocabulary, properties); - }else if( field == "access" && (entity == "publication" || entity == "dataset")){ + }else if ( field == "type" && (entity == "software")){ + return Observable.of([]); + + }else if( field == "access" && (entity == "publication" || entity == "dataset" || entity == "software" )){ // file= "accessMode.json"; // return this.getVocabularyFromFile(file); vocabulary = "dnet:access_modes.json";