[frontend] Stop onclick event propagation in AttachmentView

This commit is contained in:
Lilian 2024-05-01 02:46:29 +02:00
parent e793abab8b
commit 0163721d7f
No known key found for this signature in database
GPG key ID: 007CA12D692829E1

View file

@ -3,14 +3,14 @@
@inject IJSRuntime Js @inject IJSRuntime Js
<dialog class="attachment-view" @ref="Dialog"> <dialog class="attachment-view" @ref="Dialog">
<button @onclick="CloseDialog" class="close"><Icon Name="Icons.X" Size="5rem"></Icon></button> <button @onclick="CloseDialog" @onclick:stopPropagation="true" class="close"><Icon Name="Icons.X" Size="5rem"></Icon></button>
@if (Focused < _refs.Count -1 ) @if (Focused < _refs.Count -1 )
{ {
<button @onclick="Next" class="next"><Icon Name="Icons.ArrowRight" Size="5rem"></Icon></button> <button @onclick="Next" @onclick:stopPropagation="true" class="next"><Icon Name="Icons.ArrowRight" Size="5rem"></Icon></button>
} }
@if (Focused > 0) @if (Focused > 0)
{ {
<button @onclick="Prev" class="prev"><Icon Name="Icons.ArrowLeft" Size="5rem"></Icon></button> <button @onclick="Prev" @onclick:stopPropagation="true" class="prev"><Icon Name="Icons.ArrowLeft" Size="5rem"></Icon></button>
} }
<div class="wrap" @ref="Scroller" @onscroll="Scroll"> <div class="wrap" @ref="Scroller" @onscroll="Scroll">
@foreach (var element in Attachments) @foreach (var element in Attachments)