Skip to content

Commit

Permalink
Fix table order (#1684)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiraGeowerkstatt authored Nov 21, 2024
2 parents b9b4c28 + f642a2e commit 875ea40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export const BoreholeTable: FC<BoreholeTableProps> = ({

// Add workgroup column if not in anonymous mode
!auth.anonymousModeEnabled &&
columns.splice(1, 0, {
columns.splice(2, 0, {
field: "workgroup",
valueGetter: (value: { name: string }) => {
return value.name;
Expand Down

0 comments on commit 875ea40

Please sign in to comment.