Skip to content

Commit

Permalink
fixed invalid date generation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mathalav55 committed Nov 22, 2024
1 parent 67353ae commit 51619a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/ce/store/issue/issue-details/activity.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class IssueActivityStore implements IIssueActivityStore {
});
});

Check failure on line 106 in web/ce/store/issue/issue-details/activity.store.ts

View workflow job for this annotation

GitHub Actions / lint-web

Trailing spaces not allowed
activityComments = orderBy(activityComments, (e)=>new Date(e.created_at||''), this.sortOrder);
activityComments = orderBy(activityComments, (e)=>new Date(e.created_at || 0), this.sortOrder);

return activityComments;
});
Expand Down

0 comments on commit 51619a7

Please sign in to comment.