@@ -5,23 +5,24 @@ export function AccessControlMergedType({ access }) {
55 < >
66 < TextGrid title = "Permission" value = { access . permission } />
77 < TextGrid title = "Type" value = { access . type } />
8- < TextGrid title = "Priority" value = { access . priority } />
9- { access . username && < TextGrid title = "User" variant = "username" value = { access . username } /> }
10- { access . group && < TextGrid title = "Group" variant = "group" value = { access . group } /> }
11- { access . grantor && < TextGrid title = "Grantor" variant = "username" value = { access . grantor } /> }
12- { access . extradata && < TextGrid title = "Extra Data" value = { access . extradata } /> }
13- { access . collection && (
14- < TextGrid title = "Collection" variant = "collection" value = { access . collection } />
15- ) }
16- { access . library && < TextGrid title = "Library" variant = "collection" value = { access . library } /> }
17- { access . superUser && (
18- < TextGrid title = "Super User" variant = "boolean" value = { access . superUser } />
19- ) }
20- { access . matches && < TextGrid title = "Matches" variant = "boolean" value = { access . matches } /> }
21- { access . id && < TextGrid title = "ID" value = { access . id } /> }
22- { access . effectivePermission && (
23- < TextGrid title = "Effective Permission" value = { access . effectivePermission } />
24- ) }
8+ < TextGrid title = "Priority" value = { access . priority } hideNoValue />
9+ < TextGrid title = "Rank" value = { access . rank } />
10+ < TextGrid title = "User" variant = "username" value = { access . username } hideNoValue />
11+ < TextGrid title = "Group" variant = "group" value = { access . group } hideNoValue />
12+ < TextGrid title = "Grantor" variant = "username" value = { access . grantor } hideNoValue />
13+ < TextGrid title = "Extra Data" value = { access . extradata } hideNoValue />
14+ < TextGrid title = "Collection" variant = "collection" value = { access . collection } hideNoValue />
15+ < TextGrid title = "Library" variant = "library" value = { access . library } hideNoValue />
16+ < TextGrid title = "Super User" variant = "boolean" value = { access . superUser } hideNoValue />
17+ < TextGrid title = "Matches" variant = "boolean" value = { access . matches } hideNoValue />
18+ < TextGrid title = "ID" value = { access . id } hideNoValue />
19+ < TextGrid title = "Effective Permission" value = { access . effectivePermission } hideNoValue />
20+ < TextGrid
21+ title = "originalDisabledGrantor"
22+ value = { access . originalDisabledGrantor }
23+ variant = "list"
24+ hideNoValue
25+ />
2526 </ >
2627 ) ;
2728}
0 commit comments