Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Stepan Kiryakov <[email protected]>
  • Loading branch information
Stepan-Kirjakov committed Aug 23, 2023
1 parent 70ec9f2 commit 0253843
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
{{policy.name}}
</div>
<div>

{{policy._tags}}
</div>
<div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ export class SearchPolicyDialog implements OnInit, AfterContentInit {
item._search = `${item.name} ${item._tags}`.toLowerCase();
}
}
if (this.policy) {
this.policy._tags = this.policy.tags?.join(', ');
}
this.selectedAll = this.count === this.size;
}

Expand Down

0 comments on commit 0253843

Please sign in to comment.