diff --git a/client/src/containers/Items/ItemFormPrimarySection.js b/client/src/containers/Items/ItemFormPrimarySection.js index d34a4d5f2..9479dbfa7 100644 --- a/client/src/containers/Items/ItemFormPrimarySection.js +++ b/client/src/containers/Items/ItemFormPrimarySection.js @@ -34,7 +34,7 @@ function ItemFormPrimarySection({ categoriesList, // #withDashboardActions - changePageSubtitle + changePageSubtitle, }) { const { formatMessage } = useIntl(); @@ -88,13 +88,14 @@ function ItemFormPrimarySection({ changePageSubtitle(formatMessage({ id: _value })); })} selectedValue={value} + disabled={value === 'inventory'} > } value="service" /> - } value="inventory" /> } value="non-inventory" /> + } value="inventory" /> )} @@ -179,5 +180,5 @@ export default compose( withItemCategories(({ categoriesList }) => ({ categoriesList, })), - withDashboardActions + withDashboardActions, )(ItemFormPrimarySection);