Skip to content

Commit

Permalink
fix: hide grower detail
Browse files Browse the repository at this point in the history
  • Loading branch information
dadiorchen committed Apr 1, 2022
1 parent 979d94e commit 9173258
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/common/CustomTable/CustomTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -515,12 +515,17 @@ function CustomTable(props) {
{row[column.name]}

<IconButton
onClick={(e) => handleShowGrowerDetail(e, row)}
onClick={() => {
console.warn(
'disabled grower details'
); /*handleShowGrowerDetail(e, row)*/
}}
aria-label={`View/Edit Grower details`}
title={`View/Edit Grower details`}
style={{ padding: '0 2px 2px 0' }}
disabled
>
<Person color="primary" />
<Person color="disabled" />
</IconButton>
</Typography>
</Grid>
Expand Down

0 comments on commit 9173258

Please sign in to comment.