From c3c585bd6ee1218e1748280c6399e00101ea0a2e Mon Sep 17 00:00:00 2001 From: hanhh <18330117883@163.com> Date: Mon, 17 May 2021 21:00:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8E=92=E5=BA=8F=E9=A1=BA?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/crontab/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/crontab/index.tsx b/src/pages/crontab/index.tsx index 4263a981..7e0e4464 100644 --- a/src/pages/crontab/index.tsx +++ b/src/pages/crontab/index.tsx @@ -196,7 +196,7 @@ const Crontab = () => { setValue( data.data.sort((a: any, b: any) => { if (a.status === b.status && a.status === CrontabStatus.idle) { - return a.isDisabled - b.isDisable; + return a.isDisabled - b.isDisabled; } return CrontabSort[a.status] - CrontabSort[b.status]; }),