From: Lucas Di Pentima Date: Mon, 9 Sep 2019 18:41:40 +0000 (-0300) Subject: 15067: Fixes typo on file name. X-Git-Tag: 2.0.0~29^2~20 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/a91c2a768d3a8858856261da905f2d2184cbe602 15067: Fixes typo on file name. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- 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;