DataTable Row Height Not Expanding Properly (dynamicRowHeight Not Working) in Script Report

Hello Frappe Community,

I am trying to display an HTML table inside a DataTable cell in a Frappe report, but the row height is not expanding correctly. I have set dynamicRowHeight: true, but it does not seem to take effect. The table content is getting cut off.

frappe.query_reports["My Report"] = {
    get_datatable_options(options) {
		delete options["cellHeight"];
		return Object.assign(options, {
			dynamicRowHeight: true,
			checkboxColumn: true,
		});
	},
};