mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 13:06:31 +00:00
show created first
This commit is contained in:
@@ -284,7 +284,9 @@ public partial class DatasetExplorer
|
||||
SelectedAnnotations.Clear();
|
||||
SelectedAnnotationDict.Clear();
|
||||
var annotations = _annotationsDict[ExplorerEditor.CurrentAnnClass.YoloId];
|
||||
foreach (var ann in annotations.OrderByDescending(x => x.Value.CreatedDate))
|
||||
foreach (var ann in annotations
|
||||
.OrderBy(x => x.Value.AnnotationStatus)
|
||||
.ThenByDescending(x => x.Value.CreatedDate))
|
||||
{
|
||||
var annThumb = new AnnotationThumbnail(ann.Value);
|
||||
SelectedAnnotations.Add(annThumb);
|
||||
|
||||
Reference in New Issue
Block a user