mirror of
https://github.com/plankanban/planka.git
synced 2025-07-25 16:19:47 +02:00
parent
d386c82973
commit
2d7812a679
18 changed files with 219 additions and 301 deletions
|
@ -244,7 +244,7 @@ export default class extends BaseModel {
|
|||
}
|
||||
|
||||
getOrderedAttachmentsQuerySet() {
|
||||
return this.attachments.orderBy('id', false);
|
||||
return this.attachments.orderBy('createdAt', false);
|
||||
}
|
||||
|
||||
getFilteredOrderedInCardActivitiesQuerySet() {
|
||||
|
@ -256,7 +256,7 @@ export default class extends BaseModel {
|
|||
filter.type = ActivityTypes.COMMENT_CARD;
|
||||
}
|
||||
|
||||
return this.activities.filter(filter).orderBy('id', false);
|
||||
return this.activities.filter(filter).orderBy('createdAt', false);
|
||||
}
|
||||
|
||||
getUnreadNotificationsQuerySet() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue