Skip to content

Commit 5e7e8f7

Browse files
committed
Merge branch 'fix-acl-columns-header-order' of wsmirnow/opencast-admin-interface into r/19.x
Pull request #1483 Fix the 'Read/Write' column heading in ACL modal
2 parents 363d271 + d608b10 commit 5e7e8f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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)