[IMP] use HTML version of <br/>

This commit is contained in:
Holger Brunn
2013-05-27 07:26:18 +02:00
parent 56f8490fe5
commit 522bb2c1ee

View File

@@ -28,7 +28,7 @@ openerp.web_treeview_text_newlines = function(openerp)
result = format_cell_original(row_data, column, options);
if(column.type == 'text')
{
result = result.replace(/\n/g, '<br/>');
result = result.replace(/\n/g, '<br>');
}
return result;
}