From 92485e4bf2755c106c569881f2d613c97aa01e64 Mon Sep 17 00:00:00 2001 From: Caroline D <108160931+CarolineDenis@users.noreply.github.com> Date: Tue, 23 Dec 2025 11:43:59 -0500 Subject: [PATCH] Fix: Revert pr-#7391 --- .../frontend/js_src/lib/components/PickLists/index.tsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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 ? (