diff --git a/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PoliciesTable.tsx b/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PoliciesTable.tsx
index bcfbf6220..4810dbe96 100644
--- a/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PoliciesTable.tsx
+++ b/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PoliciesTable.tsx
@@ -98,9 +98,7 @@ export const PoliciesTable = ({ handlePopUpOpen }: Props) => {
|
Policy Name |
- Max Approval Request TTL |
- Min Access Duration |
- Max Access Duration |
+ Access Duration (min - max) |
Conditions |
|
@@ -117,7 +115,6 @@ export const PoliciesTable = ({ handlePopUpOpen }: Props) => {
{!isPoliciesLoading &&
policies.map((policy) => {
const isExpanded = expandedRows.has(policy.id);
- const maxTtl = policy.maxRequestTtl ? policy.maxRequestTtl : "No limit";
const conditionsCount = policy.conditions.conditions.length;
return (
@@ -144,9 +141,10 @@ export const PoliciesTable = ({ handlePopUpOpen }: Props) => {
{policy.name} |
- {maxTtl} |
- {policy.constraints.constraints.accessDuration.min} |
- {policy.constraints.constraints.accessDuration.max} |
+
+ {policy.constraints.constraints.accessDuration.min} -{" "}
+ {policy.constraints.constraints.accessDuration.max}
+ |
{conditionsCount} condition{conditionsCount !== 1 ? "s" : ""}
|
diff --git a/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PolicySteps/PolicyDetailsStep.tsx b/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PolicySteps/PolicyDetailsStep.tsx
index ef6800c71..228d474ad 100644
--- a/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PolicySteps/PolicyDetailsStep.tsx
+++ b/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PolicySteps/PolicyDetailsStep.tsx
@@ -24,7 +24,8 @@ export const PolicyDetailsStep = () => {
)}
/>
- (
@@ -38,6 +39,7 @@ export const PolicyDetailsStep = () => {
)}
/>
+ */}
diff --git a/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PolicySteps/PolicyReviewStep.tsx b/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PolicySteps/PolicyReviewStep.tsx
index 7dacb73c9..7abb78867 100644
--- a/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PolicySteps/PolicyReviewStep.tsx
+++ b/frontend/src/pages/pam/ApprovalsPage/components/PolicyTab/components/PolicySteps/PolicyReviewStep.tsx
@@ -187,8 +187,8 @@ export const PolicyReviewStep = () => {
{/* Summary Notice */}
- Please review all the details above. Click "Create" to save this policy or
- "Back" to make changes.
+ Please review all the details above. Submit to save this policy or go back to make
+ changes.