[12.0][FIX]web_timeline: fix group orders

This commit is contained in:
denislour
2019-06-28 10:09:51 +07:00
committed by CarlosRoca13
parent 3d58c4d6c2
commit 6aba50a7ef
2 changed files with 3 additions and 2 deletions

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);
},