mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:21:10 +02:00
🐛 fix(photos): use valid Svelte 5 event syntax
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
16a7532253
commit
741c5bc00c
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@
|
|||
</svg>
|
||||
</div>
|
||||
<p class="dropzone-text">{$_('upload.dropzone')}</p>
|
||||
<button type="button" class="btn btn-primary mt-4" onclick|stopPropagation={openFilePicker}>
|
||||
<button type="button" class="btn btn-primary mt-4" onclick={(e) => { e.stopPropagation(); openFilePicker(); }}>
|
||||
{$_('upload.selectFiles')}
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue