From ba9de46f1a36a477a4815cd085b2ea01467b4202 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 28 十一月 2024 17:01:48 +0800 Subject: [PATCH] 2024-11-28 --- src/tabviews/custom/components/card/cardcellList/index.jsx | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/tabviews/custom/components/card/cardcellList/index.jsx b/src/tabviews/custom/components/card/cardcellList/index.jsx index eb4b1dc..9dd1d5e 100644 --- a/src/tabviews/custom/components/card/cardcellList/index.jsx +++ b/src/tabviews/custom/components/card/cardcellList/index.jsx @@ -979,6 +979,8 @@ if (key === 'children') return if (/^1949-10-01/.test(data[key])) { _data[key.toLowerCase()] = '' + } else if (/\d{4}-\d{2}-\d{2}\s00:00:00/.test(data[key])) { + _data[key.toLowerCase()] = data[key].replace(/\s00:00:00/g, '') } else { _data[key.toLowerCase()] = data[key] } -- Gitblit v1.8.0