Merge PR #1314 into 12.0

Signed-off-by pedrobaeza
pull/1324/head
OCA-git-bot 2019-06-28 07:14:59 +00:00
commit 255fa4bb8e
2 changed files with 3 additions and 2 deletions

View File

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

View File

@ -166,7 +166,8 @@ odoo.define('web_timeline.TimelineView', function (require) {
if (grp2.id === -1) {
return +1;
}
return grp1.content - grp2.content;
return grp1.content.locateCompare(grp2.content);
},