fix: remove elllipsis in button

This commit is contained in:
sokumon 2025-03-21 19:23:55 +05:30
parent 9930dd5444
commit b58d97c67b

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)}"
>`
)