diff --git a/specifyweb/frontend/js_src/lib/components/PickLists/index.tsx b/specifyweb/frontend/js_src/lib/components/PickLists/index.tsx index cbc2aa35d7b..264e7b1d9f5 100644 --- a/specifyweb/frontend/js_src/lib/components/PickLists/index.tsx +++ b/specifyweb/frontend/js_src/lib/components/PickLists/index.tsx @@ -159,14 +159,9 @@ export function PickListComboBox({ const isReadOnly = React.useContext(ReadOnlyContext); - const isSpecialByPrefix = - typeof pickListName === 'string' && pickListName.startsWith('_'); - const isSpecialPicklist = - isDisabled || isSpecialByPrefix || pickList?.get?.('readOnly') === true; - return ( <> - {isSpecialPicklist ? ( + {pickList?.get('readOnly') === true || isDisabled ? (