web: fix lint error

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-08-23 18:38:35 +02:00
parent 2878597603
commit b2f077645a
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ export class BoundPoliciesList extends Table<PolicyBinding> {
.objects=${this.selectedElements}
.metadata=${(item: PolicyBinding) => {
return [
{ key: t`Order`, value: item.order },
{ key: t`Order`, value: item.order.toString() },
{ key: t`Policy / User / Group`, value: this.getPolicyUserGroupRow(item) },
];
}}