Skip to content

Commit

Permalink
feat(device): disable edit and data upload options in device dropdown…
Browse files Browse the repository at this point in the history
… menu
  • Loading branch information
freds-dev committed Dec 18, 2024
1 parent e2cf91c commit 05d49c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/mydevices/dt/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ export const columns: ColumnDef<SenseBox>[] = [
<DropdownMenuItem>
<a href={`/explore/${senseBox.id}`}>Show on map</a>
</DropdownMenuItem>
<DropdownMenuItem>
<DropdownMenuItem disabled>
<a href={`/device/${senseBox.id}/edit/general`}>Edit</a>
</DropdownMenuItem>
<DropdownMenuItem>
<DropdownMenuItem disabled>
<a href={`/device/${senseBox.id}/dataupload`}>Data upload</a>
</DropdownMenuItem>
<DropdownMenuItem>
Expand Down

0 comments on commit 05d49c5

Please sign in to comment.