Explorar o código

更新event_type排序

lang %!s(int64=3) %!d(string=hai) anos
pai
achega
814a138afb
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      Controller/AiController.py

+ 3 - 1
Controller/AiController.py

@@ -613,7 +613,9 @@ class AiView(View):
             for label in labels_type:
                 if label in labels:
                     label_list.append(label)
-        return {'label_type': user_labels_type.keys(), 'label_list': label_list}
+        user_labels_list = list(user_labels_type.keys())
+        user_labels_list.sort()
+        return {'label_type': user_labels_list, 'label_list': label_list}
 
 
     def upload_s3(self, file_path, upload_path):