tree node overflow and adjusting on new line

Hello webix team,
I have tree with long label,and i used template

template: function (obj, common) {
return “” + common.icon(obj, common) + “” + common.folder(obj, common) + webix.template.escape(obj.value) + “”;}

but when it run on IE its node automatically adjusted and enter into new line.
how can i solve this issue?

Hello @komals ,

Could you please provide an example of your code?
By default, the text overflow is hidden on IE11: https://snippet.webix.com/bmzyh88n

We noticed that this problem was in 6.0 Webix version. It’s already fixed. Please, update the version to the newest one

Thank you @Nastja now it works.