Skip to content

Commit

Permalink
added export option in application for roleID-102
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshatGupta15 committed Oct 11, 2024
1 parent 79fb169 commit a8dead0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 1 addition & 6 deletions pages/admin/rc/[rcid]/company/[companyId]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,12 +258,7 @@ function Index() {
</Stack>
</Stack>

<DataGrid
rows={rows}
columns={columns}
getRowId={(rows) => rows.ID}
isVisibleToRole102
/>
<DataGrid rows={rows} columns={columns} getRowId={(rows) => rows.ID} />
</Stack>
</div>
);
Expand Down
7 changes: 6 additions & 1 deletion pages/admin/rc/[rcid]/proforma/[proformaid]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,12 @@ function Index() {
</div>
</Stack>

<DataGrid rows={rows} columns={columns} loading={loading} />
<DataGrid
rows={rows}
columns={columns}
loading={loading}
isVisibleToRole102
/>
</Stack>
</Grid>
<Grid item xs={12}>
Expand Down

0 comments on commit a8dead0

Please sign in to comment.