Skip to content

Commit

Permalink
feature(tgnms-v2) Plans Table shows most recently created plans first
Browse files Browse the repository at this point in the history
Summary: Changes it so that the plans display the newest items first.

Reviewed By: aclave1

Differential Revision: D33927678

fbshipit-source-id: 9d8b1a560ee0420abcd2c050ad28eec9b795c289
  • Loading branch information
Tommy Huynh authored and facebook-github-bot committed Feb 2, 2022
1 parent 79bdff3 commit 138e381
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,7 @@ export default class PlanningService {
}): Promise<Array<NetworkPlan>> {
const rows = await network_plan.findAll({
where: {folder_id: folderId},
order: [['id', 'DESC']],
include: includeInputFiles(),
});

Expand Down

0 comments on commit 138e381

Please sign in to comment.