This is an automated email from the ASF dual-hosted git repository.

xxyu pushed a commit to branch kylin5
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit ca0e37a43d68eb1bf988cef266b15c8392819292
Author: Qian Xia <lauraxiaq...@gmail.com>
AuthorDate: Wed Jul 12 16:17:33 2023 +0800

    KYLIN-5621 fix segment list order issue
---
 .../studio/StudioModel/ModelList/ConfirmSegment/ConfirmSegment.vue      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kystudio/src/components/studio/StudioModel/ModelList/ConfirmSegment/ConfirmSegment.vue
 
b/kystudio/src/components/studio/StudioModel/ModelList/ConfirmSegment/ConfirmSegment.vue
index 8dd943ca4f..7578ae92f5 100644
--- 
a/kystudio/src/components/studio/StudioModel/ModelList/ConfirmSegment/ConfirmSegment.vue
+++ 
b/kystudio/src/components/studio/StudioModel/ModelList/ConfirmSegment/ConfirmSegment.vue
@@ -220,7 +220,7 @@ export default class ConfirmSegmentModal extends Vue {
     }
   }
   handleSortChange ({ column, prop, order }) {
-    if (order === 'ascending') {
+    if (order !== 'ascending') {
       this.filter.reverse = false
     } else {
       this.filter.reverse = true

Reply via email to