Skip to content

Commit

Permalink
Show delegation if delegations are active (#3756)
Browse files Browse the repository at this point in the history
  • Loading branch information
Elblinator authored Jun 10, 2024
1 parent 10373e1 commit 2737739
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ng-container [ngTemplateOutlet]="votingArea"></ng-container>

<!-- Delegations -->
<ng-container *ngIf="isUserPresent && (voteDelegationEnabled | async) && (forbidDelegationToVote | async)">
<ng-container *ngIf="isUserPresent && (voteDelegationEnabled | async)">
<div class="topic-vote-delegation" *ngFor="let delegation of delegations">
<mat-divider></mat-divider>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ng-container [ngTemplateOutlet]="votingArea"></ng-container>

<!-- Delegations -->
<ng-container *ngIf="isUserPresent && (voteDelegationEnabled | async) && (forbidDelegationToVote | async)">
<ng-container *ngIf="isUserPresent && (voteDelegationEnabled | async)">
<div class="assignment-vote-delegation" *ngFor="let delegation of delegations">
<mat-divider></mat-divider>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ng-container [ngTemplateOutlet]="votingArea"></ng-container>

<!-- Delegations -->
<ng-container *ngIf="isUserPresent && (voteDelegationEnabled | async) && (forbidDelegationToVote | async)">
<ng-container *ngIf="isUserPresent && (voteDelegationEnabled | async)">
<div class="motion-vote-delegation" *ngFor="let delegation of delegations">
<mat-divider></mat-divider>

Expand Down

0 comments on commit 2737739

Please sign in to comment.