From a91c2a768d3a8858856261da905f2d2184cbe602 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Mon, 9 Sep 2019 15:41:40 -0300 Subject: [PATCH] 15067: Fixes typo on file name. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- src/store/vocabulary/vocabulary-actions.ts | 2 +- .../{vocabulary-selctors.ts => vocabulary-selectors.ts} | 0 .../resource-properties-form/property-field-common.tsx | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/store/vocabulary/{vocabulary-selctors.ts => vocabulary-selectors.ts} (100%) diff --git a/src/store/vocabulary/vocabulary-actions.ts b/src/store/vocabulary/vocabulary-actions.ts index 799cffa0..ceef5e6c 100644 --- a/src/store/vocabulary/vocabulary-actions.ts +++ b/src/store/vocabulary/vocabulary-actions.ts @@ -5,7 +5,7 @@ import { Dispatch } from 'redux'; import { ServiceRepository } from '~/services/services'; import { propertiesActions } from '~/store/properties/properties-actions'; -import { VOCABULARY_PROPERTY_NAME, DEFAULT_VOCABULARY } from './vocabulary-selctors'; +import { VOCABULARY_PROPERTY_NAME, DEFAULT_VOCABULARY } from './vocabulary-selectors'; import { isVocabulary } from '~/models/vocabulary'; export const loadVocabulary = async (dispatch: Dispatch, _: {}, { vocabularyService }: ServiceRepository) => { diff --git a/src/store/vocabulary/vocabulary-selctors.ts b/src/store/vocabulary/vocabulary-selectors.ts similarity index 100% rename from src/store/vocabulary/vocabulary-selctors.ts rename to src/store/vocabulary/vocabulary-selectors.ts diff --git a/src/views-components/resource-properties-form/property-field-common.tsx b/src/views-components/resource-properties-form/property-field-common.tsx index 028c46b9..55076c3d 100644 --- a/src/views-components/resource-properties-form/property-field-common.tsx +++ b/src/views-components/resource-properties-form/property-field-common.tsx @@ -7,7 +7,7 @@ import { WrappedFieldMetaProps, WrappedFieldInputProps, WrappedFieldProps } from import { identity } from 'lodash'; import { Vocabulary } from '~/models/vocabulary'; import { RootState } from '~/store/store'; -import { getVocabulary } from '~/store/vocabulary/vocabulary-selctors'; +import { getVocabulary } from '~/store/vocabulary/vocabulary-selectors'; export interface VocabularyProp { vocabulary: Vocabulary; -- 2.30.2