Skip to content

Commit

Permalink
Merge pull request #5495 from bcgov/dev-MD-3621
Browse files Browse the repository at this point in the history
3621 - Change layout for IAO users to match scanning team
  • Loading branch information
milosdes authored Dec 30, 2024
2 parents 6caa53d + 7f9652c commit b2717f3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2169,7 +2169,7 @@ export const RecordsLog = ({
</h1>
</Grid>
{validLockRecordsState() ?
<Grid item xs={isScanningTeamMember ? 1 : 2}>
<Grid item xs={isScanningTeamMember ? 1 : 1}>
<Tooltip
enterDelay={1000}
title={isMinistryCoordinator ? "Only the IAO analyst can manually lock or unlock the records log, please contact the assigned analyst for assistance" : "Manually unlock or lock the records log"}
Expand All @@ -2196,12 +2196,12 @@ export const RecordsLog = ({
</span>
}
</Tooltip>
</Grid> : <Grid item xs={isScanningTeamMember ? 1 : 2}></Grid>
</Grid> : <Grid item xs={isScanningTeamMember ? 1 : 1}></Grid>
}
{(isMinistryCoordinator == false &&
records?.length > 0 &&
DISABLE_REDACT_WEBLINK?.toLowerCase() == "false" && (
<Grid item xs={isScanningTeamMember ? 1 : 2}>
<Grid item xs={isScanningTeamMember ? 1 : 1}>
<a
href={DOC_REVIEWER_WEB_URL + "/foi/" + ministryId}
target="_blank"
Expand Down

0 comments on commit b2717f3

Please sign in to comment.