Merge pull request #31853 from sokumon/small-ui-fixes
fix: remove elllipsis in button
This commit is contained in:
commit
6ad3e1f668
1 changed files with 1 additions and 1 deletions
|
|
@ -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)}"
|
||||
>`
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue