Skip to content

Commit 88d8c18

Browse files
committed
Fix the 'Read/Write' column heading in ACL modal
The heading was in wrong order.
1 parent 119e8d5 commit 88d8c18

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/shared/modals/ResourceDetailsAccessPolicyTab.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -488,15 +488,15 @@ export const AccessPolicyTable = <T extends AccessPolicyTabFormikProps>({
488488
<th>
489489
{
490490
t(
491-
"EVENTS.EVENTS.DETAILS.ACCESS.ACCESS_POLICY.WRITE",
492-
) /* <!-- Write --> */
491+
"EVENTS.EVENTS.DETAILS.ACCESS.ACCESS_POLICY.READ",
492+
) /* <!-- Read --> */
493493
}
494494
</th>
495495
<th>
496496
{
497497
t(
498-
"EVENTS.EVENTS.DETAILS.ACCESS.ACCESS_POLICY.READ",
499-
) /* <!-- Read --> */
498+
"EVENTS.EVENTS.DETAILS.ACCESS.ACCESS_POLICY.WRITE",
499+
) /* <!-- Write --> */
500500
}
501501
</th>
502502
{hasActions && (

0 commit comments

Comments
 (0)