mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2026-06-10 11:16:48 +00:00
fix: clean up whitespace and add alt text to pasted images
Remove trailing whitespace throughout the Create.svelte component and add missing alt attribute to pasted image previews for better accessibility.
This commit is contained in:
@@ -219,7 +219,7 @@
|
||||
<div class="images-grid">
|
||||
{#each pastedImages as image, index}
|
||||
<div class="image-preview">
|
||||
<img src={image.preview} class="preview-img" />
|
||||
<img src={image.preview} class="preview-img" alt="Pasted image" />
|
||||
<div class="image-actions">
|
||||
<Button
|
||||
onclick={() => removePastedImage(index)}
|
||||
|
||||
Reference in New Issue
Block a user