How do I change height of small text field in frappe erpnext?

Hi,
I need to change small text fields height.
Can we change the height of small text field ?
Thank you

Hi @Sakshi_Choudhary,

We added a Small Text in the lead and the field name is sm.
Please apply the custom/client script.

frappe.ui.form.on('Lead', {
	refresh: function(frm) {
		$("textarea[data-fieldname='sm']").css({'height':'70'});
	}
});

Before:

After added a code:

Thank You!

4 Likes

Thank you So Much