diff --git a/src/modules/otus/components/Panel/PanelGallery/main.js b/src/modules/otus/components/Panel/PanelGallery/main.js index 841c21d..40e23e8 100644 --- a/src/modules/otus/components/Panel/PanelGallery/main.js +++ b/src/modules/otus/components/Panel/PanelGallery/main.js @@ -1,8 +1,8 @@ -import { SPECIES_GROUP } from '@/modules/otus/constants' +import { SPECIES_GROUP, SPECIES_AND_INFRASPECIES_GROUP } from '@/modules/otus/constants' import PanelGallery from './PanelGallery.vue' export default { id: 'panel:gallery', component: PanelGallery, - available: [SPECIES_GROUP] + available: [SPECIES_GROUP, SPECIES_AND_INFRASPECIES_GROUP] } diff --git a/src/modules/otus/components/Panel/PanelNomenclatureReferences/PanelReferenceRow.vue b/src/modules/otus/components/Panel/PanelNomenclatureReferences/PanelReferenceRow.vue index f7ab61e..83d2ac5 100644 --- a/src/modules/otus/components/Panel/PanelNomenclatureReferences/PanelReferenceRow.vue +++ b/src/modules/otus/components/Panel/PanelNomenclatureReferences/PanelReferenceRow.vue @@ -1,7 +1,7 @@ diff --git a/src/modules/otus/components/Panel/PanelTypeSpecimen/main.js b/src/modules/otus/components/Panel/PanelTypeSpecimen/main.js index efe810b..8892778 100644 --- a/src/modules/otus/components/Panel/PanelTypeSpecimen/main.js +++ b/src/modules/otus/components/Panel/PanelTypeSpecimen/main.js @@ -1,8 +1,8 @@ -import { SPECIES_GROUP } from '../../../constants' +import { SPECIES_GROUP, SPECIES_AND_INFRASPECIES_GROUP } from '../../../constants' import PanelTypeSpecimen from './PanelTypeSpecimen.vue' export default { id: 'panel:type-specimen', component: PanelTypeSpecimen, - available: [SPECIES_GROUP] + available: [SPECIES_GROUP, SPECIES_AND_INFRASPECIES_GROUP] } diff --git a/src/modules/otus/constants/rankGroups.js b/src/modules/otus/constants/rankGroups.js index ce294c9..9590e14 100644 --- a/src/modules/otus/constants/rankGroups.js +++ b/src/modules/otus/constants/rankGroups.js @@ -2,3 +2,4 @@ export const HIGHER_CLASSIFICATION_GROUP = 'HigherClassificationGroup' export const FAMILY_GROUP = 'FamilyGroup' export const GENUS_GROUP = 'GenusGroup' export const SPECIES_GROUP = 'SpeciesGroup' +export const SPECIES_AND_INFRASPECIES_GROUP = 'SpeciesAndInfraspeciesGroup'