Odoo 11. In the chatter dialog beneath a record, all the logs (from Log Note) are ordered by id. This is defined on the mail.message model:
```
class Message(models.Model):
""" Messages model: system notification (replacing res.log notifications),
comments (OpenChatter discussion) and incoming emails. """
_name = 'mail.message'
_description = 'Message'
_order = 'id desc'
```
Is there a way to order this by date? Simply inheriting the model and setting the _order did not work. eg. this is what I thought would work:
```
class Message(models.Model):
_inherit = 'mail.message'
_order = 'date desc'
```
Considering chatter has some Javascript involvement, I imagine there may be somewhere to change this in the javascript layer?
Thank you in advance!