Browse Source

wpf: Moved Kanban.Status to front page

Kenric Nugteren 1 month ago
parent
commit
cb15fe5420
1 changed files with 5 additions and 6 deletions
  1. 5 6
      prs.classes/Entities/Kanban/Kanban.cs

+ 5 - 6
prs.classes/Entities/Kanban/Kanban.cs

@@ -120,8 +120,12 @@ namespace Comal.Classes
         [LookupDefinition(typeof(EmployeeLookup))]
         public EmployeeLink ManagerLink { get; set; }
 
-        [DateTimeEditor(Editable = Editable.Hidden)]
         [EditorSequence(10)]
+        [LoggableProperty]
+        [EnumLookupEditor(typeof(KanbanStatus))]
+        public KanbanStatus Status { get; set; }
+
+        [DateTimeEditor(Editable = Editable.Hidden)]
         public DateTime Completed { get; set; } = DateTime.MinValue;
 
         [EditorSequence("Other", 1)]
@@ -148,11 +152,6 @@ namespace Comal.Classes
         [CheckBoxEditor]
         public bool Locked { get; set; }
 
-        [EditorSequence("Other", 7)]
-        [LoggableProperty]
-        [EnumLookupEditor(typeof(KanbanStatus))]
-        public KanbanStatus Status { get; set; }
-
         [EditorSequence("Other", 8)]
         [TagsEditor]
         public string Tags { get; set; } = "";