Frappe V16 Tree View (Label)

Hi , i got the issue from v15 upgrade to v16the tree view page so label of node is rendering by name so how to custom to render another customso v15 i custom by code at below.

						CONCAT(
							order_node,
							'. ',
							(CASE WHEN IFNULL({field}, '') = '' THEN '' ELSE CONCAT('[', {field}, '] ') END),
							(CASE WHEN is_group = 1 THEN {field} ELSE {field} END),
							'<span id="naming_node" style="display: none;">',
							name,
							'</span>'
						)
					)