We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38d372e commit 64dc124Copy full SHA for 64dc124
arduino-ide-extension/src/browser/widgets/cloud-sketchbook/cloud-sketchbook-tree.ts
@@ -284,7 +284,7 @@ export class CloudSketchbookTree extends SketchbookTree {
284
285
// same sync status, compare on modified time
286
if (syncComparison === 0) {
287
- return (a.fileStat.mtime || 0) - (b.fileStat.mtime || 0);
+ return (b.fileStat.mtime || 0) - (a.fileStat.mtime || 0);
288
}
289
return syncComparison;
290
0 commit comments