[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">
|
||||
@if (Reactions.Count > 0)
|
||||
{
|
||||
<div claass="reactions">
|
||||
<div class="reactions">
|
||||
@foreach (var reaction in Reactions)
|
||||
{
|
||||
<NoteReaction Reaction="reaction"/>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
<button @onclick:StopPropagation="true" class="btn">
|
||||
<button class="btn" @onclick:stopPropagation="true">
|
||||
<Icon Name="Icons.ArrowUUpLeft"/>
|
||||
</button>
|
||||
<button @onclick:StopPropagation="true" class="btn">
|
||||
<button class="btn" @onclick:stopPropagation="true">
|
||||
<Icon Name="Icons.ArrowsClockwise"/>
|
||||
</button>
|
||||
<button @onclick="Like" @onclick:StopPropagation="true" class="btn">
|
||||
<button @onclick="Like" @onclick:stopPropagation="true" class="btn">
|
||||
@if (IsLiked)
|
||||
{
|
||||
<Icon Name="Icons.Heart" Pack="IconStyle.Fill"/>
|
||||
|
@ -28,10 +28,10 @@
|
|||
<span class="like-count">@Likes</span>
|
||||
}
|
||||
</button>
|
||||
<button @onclick:StopPropagation="true" class="btn">
|
||||
<button class="btn" @onclick:stopPropagation="true">
|
||||
<Icon Name="Icons.Smiley"/>
|
||||
</button>
|
||||
<button @onclick:StopPropagation="true" class="btn">
|
||||
<button class="btn" @onclick:stopPropagation="true">
|
||||
<Icon Name="Icons.DotsThreeOutline"/>
|
||||
</button>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue