fix: remove elllipsis in button
This commit is contained in:
parent
9930dd5444
commit
b58d97c67b
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