Merge pull request #38998 from iamejaaz/small-ui-ux-fix

fix(File): Change remove Icon
This commit is contained in:
Ejaaz Khan 2026-04-29 21:07:08 +05:30 committed by GitHub
commit 1a8fc0b553
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -60,12 +60,14 @@
class="btn btn-crop muted"
@click="emit('toggle_image_cropper')"
v-html="frappe.utils.icon('crop', 'md')"
:title="__('Crop')"
></button>
<button
v-if="!uploaded && !file.uploading && !file.failed"
class="btn muted"
@click="emit('remove')"
v-html="frappe.utils.icon('delete', 'md')"
v-html="frappe.utils.icon('x', 'md')"
:title="__('Remove')"
></button>
</div>
</div>