Merge pull request #31853 from sokumon/small-ui-fixes

fix: remove elllipsis in button
This commit is contained in:
Soham Kulkarni 2025-03-21 19:34:11 +05:30 committed by GitHub
commit 6ad3e1f668
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,7 +9,7 @@ frappe.ui.form.ControlButton = class ControlButton extends frappe.ui.form.Contro
const btn_size = this.df.btn_size ? `btn-${this.df.btn_size}` : "btn-xs";
this.$input = $(
`<button
class="btn ${frappe.utils.escape_html(btn_size)} ${frappe.utils.escape_html(btn_type)} ellipsis"
class="btn ${frappe.utils.escape_html(btn_size)} ${frappe.utils.escape_html(btn_type)}"
title="${frappe.utils.escape_html(this.df.label)}"
>`
)