Skip to content

Commit

Permalink
fix invalid extra quotes in html
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Dec 2, 2023
1 parent cebcddb commit 2f2d6f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/views/base/layout.scala
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ object layout:
s"""
<div id="zenzone">
<a href="/" class="zen-home"></a>
<a data-icon="${licon.Checkmark}"" id="zentog" class="text fbt active">${trans.preferences.zenMode
<a data-icon="${licon.Checkmark}" id="zentog" class="text fbt active">${trans.preferences.zenMode
.txt()}</a>
</div>"""

Expand All @@ -121,13 +121,13 @@ object layout:
spaceless:
s"""<div>
<button id="challenge-toggle" class="toggle link">
<span title="$challengeTitle" role="status" aria-label="$challengeTitle" class="data-count" data-count="${ctx.nbChallenges}" data-icon="${licon.Swords}""></span>
<span title="$challengeTitle" role="status" aria-label="$challengeTitle" class="data-count" data-count="${ctx.nbChallenges}" data-icon="${licon.Swords}"></span>
</button>
<div id="challenge-app" class="dropdown"></div>
</div>
<div>
<button id="notify-toggle" class="toggle link">
<span title="$notifTitle" role="status" aria-label="$notifTitle" class="data-count" data-count="${ctx.nbNotifications}" data-icon="${licon.BellOutline}""></span>
<span title="$notifTitle" role="status" aria-label="$notifTitle" class="data-count" data-count="${ctx.nbNotifications}" data-icon="${licon.BellOutline}"></span>
</button>
<div id="notify-app" class="dropdown"></div>
</div>"""
Expand All @@ -137,7 +137,7 @@ object layout:
spaceless:
s"""<div class="dasher">
<button class="toggle link anon">
<span title="$preferences" aria-label="$preferences" data-icon="${licon.Gear}""></span>
<span title="$preferences" aria-label="$preferences" data-icon="${licon.Gear}"></span>
</button>
<div id="dasher_app" class="dropdown"></div>
</div>
Expand Down

0 comments on commit 2f2d6f4

Please sign in to comment.