Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Findeton committed Jul 3, 2023
1 parent ad70c7b commit 81a42cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avBooth/start-screen-directive/start-screen-directive.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
></h1>
<p
class="election-description description"
ng-bind-html="((parentElection && parentElection.description) || (!parentElection && election.description) || '') | addTargetBlank"
ng-if="(parentElection && !!parentElection.description) || (!parentElection && !!election.description)"
ng-bind-html="((parentElection && (parentElection | customI18n : 'description')) || (!parentElection && (election | customI18n : 'description')) || '') | addTargetBlank"
ng-if="(parentElection && (!!parentElection.description || !!parentElection.description_i18n)) || (!parentElection && (!!election.description || !!election.description_i18n))"
></p>
</div>
</div>
Expand Down

0 comments on commit 81a42cf

Please sign in to comment.