From 420dde90ad95420a03746a3be32c2081ab6f4e61 Mon Sep 17 00:00:00 2001 From: anbebe <58171814+anbebe@users.noreply.github.com> Date: Fri, 6 Dec 2024 09:58:05 +0100 Subject: [PATCH] Added delegatedvote weight visible for canSeeParticipants (#4456) --- .../participant-list/participant-list.component.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/client/src/app/site/pages/meetings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html b/client/src/app/site/pages/meetings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html index af39fed402..45a53da30f 100644 --- a/client/src/app/site/pages/meetings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html +++ b/client/src/app/site/pages/meetings/pages/participants/pages/participant-list/components/participant-list/participant-list.component.html @@ -98,7 +98,12 @@

{{ 'Participants' | translate }}

} @if (!canSeeSensitiveData && showVoteWeight) { -
{{ 'Vote weight' | translate }}: {{ user.vote_weight() }}
+
+ {{ 'Vote weight' | translate }}: {{ user.vote_weight() }} + @if (user.hasVoteRightFromOthers()) { + + {{ sumOfDelegatedVoteWeight(user) }} {{ 'from delegated votes' | translate }} + } +
}