Skip to content

Commit

Permalink
Replace span with the relevant os-class (#4134)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkrasnovyd authored Sep 18, 2024
1 parent c0883b1 commit 75ea7c7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,9 @@ <h4>{{ 'Voting right delegated to (proxy)' | translate }}</h4>
@if (showVoteDelegations && user!.vote_delegations_from().length > 0) {
<div>
<h4>{{ 'Voting right received from (principals)' | translate }}</h4>
<span>{{ user!.vote_delegations_from() }}</span>
<os-comma-separated-listing [list]="user!.vote_delegations_from()">
<ng-template let-voteDelegationsFrom>{{ voteDelegationsFrom }}</ng-template>
</os-comma-separated-listing>
</div>
}
<!-- Vote weight -->
Expand Down

0 comments on commit 75ea7c7

Please sign in to comment.