소스 검색

fix: reverse year options

Signed-off-by: Carlos <568187512@qq.com>
Carlos 6 일 전
부모
커밋
03cf388072
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/app/pages/datav/digital-line/right-panel/right-panel.component.ts

+ 1 - 1
src/app/pages/datav/digital-line/right-panel/right-panel.component.ts

@@ -89,7 +89,7 @@ export class RightPanelComponent {
     this.yearOptions = Array.from({ length: isInit ? date.getFullYear() - 2023 : 1 }, (_, i) => ({
       label: `${date.getFullYear() - i}年`,
       value: date.getFullYear() - i,
-    }));
+    })).reverse();
     this.year = this.yearOptions[this.yearOptions.length - 1].value;
     this.month = date.getMonth() + 1;
   }