From 53bcb7e5dffa071d2c6593f5db7f0b6e4e2f8dfe Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Wed, 18 Oct 2023 16:17:02 +0800
Subject: [PATCH] 隐藏重复定时和连续执行

---
 src/utils/time.ts |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/utils/time.ts b/src/utils/time.ts
index 679e502..72a311d 100644
--- a/src/utils/time.ts
+++ b/src/utils/time.ts
@@ -45,6 +45,7 @@
 
 export function convertTimestampToDate (timestamp:any, format:string) {
   if (timestamp && (typeof timestamp === 'string') && timestamp.indexOf('-') > -1) {
+    // eslint-disable-next-line no-useless-escape
     timestamp = timestamp.replace(/\-/g, '/')
   }
   const time = new Date(timestamp)

--
Gitblit v1.9.3