web/admin: lint bound group under policies
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
c824af5bc3
commit
db557401aa
|
@ -67,6 +67,9 @@ export class BoundPoliciesList extends Table<PolicyBinding> {
|
||||||
if (item.user) {
|
if (item.user) {
|
||||||
return html` <a href=${`#/identity/users/${item.user}`}> ${label} </a> `;
|
return html` <a href=${`#/identity/users/${item.user}`}> ${label} </a> `;
|
||||||
}
|
}
|
||||||
|
if (item.group) {
|
||||||
|
return html` <a href=${`#/identity/groups/${item.group}`}> ${label} </a> `;
|
||||||
|
}
|
||||||
return html`${label}`;
|
return html`${label}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue