We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37037c commit fa46041Copy full SHA for fa46041
src/plus/focus/focusProvider.ts
@@ -780,6 +780,9 @@ export function groupAndSortFocusItems(items?: FocusItem[]) {
780
}
781
782
783
+ // Re-sort pinned and draft groups by updated date
784
+ grouped.get('pinned')!.sort((a, b) => b.updatedDate.getTime() - a.updatedDate.getTime());
785
+ grouped.get('draft')!.sort((a, b) => b.updatedDate.getTime() - a.updatedDate.getTime());
786
return grouped;
787
788
0 commit comments