forked from Techsystech/web
commit
d736ee4460
|
@ -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": "11.0.1.4.1",
|
"version": "11.0.1.4.2",
|
||||||
'author': 'ACSONE SA/NV, '
|
'author': 'ACSONE SA/NV, '
|
||||||
'Tecnativa, '
|
'Tecnativa, '
|
||||||
'Monk Software, '
|
'Monk Software, '
|
||||||
|
|
|
@ -159,7 +159,8 @@ odoo.define('web_timeline.TimelineView', function (require) {
|
||||||
if (grp2.id === -1) {
|
if (grp2.id === -1) {
|
||||||
return +1;
|
return +1;
|
||||||
}
|
}
|
||||||
return grp1.content - grp2.content;
|
|
||||||
|
return grp1.content.localeCompare(grp2.content);
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue