3
0
Fork 0

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

12.0
denislour 2019-07-01 22:27:10 +07:00 committed by OCA-git-bot
parent 255fa4bb8e
commit 9477864166
1 changed files with 1 additions and 1 deletions

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