Skip to content

Commit a949c9b

Browse files
committed
#4177 assembly fix
1 parent b4a316f commit a949c9b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/frontend/src/pages/ProjectDetailPage/ProjectViewContainer/BOM

src/frontend/src/pages/ProjectDetailPage/ProjectViewContainer/BOM/BOMTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const BOMTable: React.FC<BOMTableProps> = ({
164164
processRowUpdate as unknown as (newRow: GridValidRowModel, oldRow: GridValidRowModel) => Promise<GridValidRowModel>
165165
}
166166
onProcessRowUpdateError={onProcessRowUpdateError}
167-
isCellEditable={(params) => editPerms && params.row.id.startsWith('assembly')}
167+
isCellEditable={(params) => editPerms && !params.row.id.startsWith('assembly')}
168168
onRowClick={openAssembly}
169169
componentsProps={{
170170
row: {

0 commit comments

Comments
 (0)