[12.0][web_timeline] Fix bug from group_order: locale instead locate.

pull/2247/head
denislour 2019-07-01 22:27:10 +07:00 committed by CarlosRoca13
parent 6aba50a7ef
commit 4b8cdfbcf9
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
{ {
'name': "Web timeline", 'name': "Web timeline",
'summary': "Interactive visualization chart to show events in time", 'summary': "Interactive visualization chart to show events in time",
"version": "12.0.1.0.4", "version": "12.0.1.0.5",
"development_status": "Production/Stable", "development_status": "Production/Stable",
'author': 'ACSONE SA/NV, ' 'author': 'ACSONE SA/NV, '
'Tecnativa, ' 'Tecnativa, '

View File

@ -167,7 +167,7 @@ odoo.define('web_timeline.TimelineView', function (require) {
return +1; return +1;
} }
return grp1.content.locateCompare(grp2.content); return grp1.content.localeCompare(grp2.content);
}, },