[frontend] fix typo in event propagation flag
This commit is contained in:
parent
7e91c9d9e6
commit
ae023ac0e4
1 changed files with 6 additions and 6 deletions
|
@ -3,20 +3,20 @@
|
||||||
<div class="note-footer">
|
<div class="note-footer">
|
||||||
@if (Reactions.Count > 0)
|
@if (Reactions.Count > 0)
|
||||||
{
|
{
|
||||||
<div claass="reactions">
|
<div class="reactions">
|
||||||
@foreach (var reaction in Reactions)
|
@foreach (var reaction in Reactions)
|
||||||
{
|
{
|
||||||
<NoteReaction Reaction="reaction"/>
|
<NoteReaction Reaction="reaction"/>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
<button @onclick:StopPropagation="true" class="btn">
|
<button class="btn" @onclick:stopPropagation="true">
|
||||||
<Icon Name="Icons.ArrowUUpLeft"/>
|
<Icon Name="Icons.ArrowUUpLeft"/>
|
||||||
</button>
|
</button>
|
||||||
<button @onclick:StopPropagation="true" class="btn">
|
<button class="btn" @onclick:stopPropagation="true">
|
||||||
<Icon Name="Icons.ArrowsClockwise"/>
|
<Icon Name="Icons.ArrowsClockwise"/>
|
||||||
</button>
|
</button>
|
||||||
<button @onclick="Like" @onclick:StopPropagation="true" class="btn">
|
<button @onclick="Like" @onclick:stopPropagation="true" class="btn">
|
||||||
@if (IsLiked)
|
@if (IsLiked)
|
||||||
{
|
{
|
||||||
<Icon Name="Icons.Heart" Pack="IconStyle.Fill"/>
|
<Icon Name="Icons.Heart" Pack="IconStyle.Fill"/>
|
||||||
|
@ -28,10 +28,10 @@
|
||||||
<span class="like-count">@Likes</span>
|
<span class="like-count">@Likes</span>
|
||||||
}
|
}
|
||||||
</button>
|
</button>
|
||||||
<button @onclick:StopPropagation="true" class="btn">
|
<button class="btn" @onclick:stopPropagation="true">
|
||||||
<Icon Name="Icons.Smiley"/>
|
<Icon Name="Icons.Smiley"/>
|
||||||
</button>
|
</button>
|
||||||
<button @onclick:StopPropagation="true" class="btn">
|
<button class="btn" @onclick:stopPropagation="true">
|
||||||
<Icon Name="Icons.DotsThreeOutline"/>
|
<Icon Name="Icons.DotsThreeOutline"/>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue