This is an automated email from the ASF dual-hosted git repository.
abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new a62059516 fix: dispaly < 1m when duration less than 1m (#8078)
a62059516 is described below
commit a6205951617377576e63196b8d6cf7d6ace0bf35
Author: 青湛 <[email protected]>
AuthorDate: Fri Sep 20 15:35:20 2024 +1200
fix: dispaly < 1m when duration less than 1m (#8078)
---
config-ui/src/routes/pipeline/components/duration.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config-ui/src/routes/pipeline/components/duration.tsx
b/config-ui/src/routes/pipeline/components/duration.tsx
index 67ea9e290..3620fa4bd 100644
--- a/config-ui/src/routes/pipeline/components/duration.tsx
+++ b/config-ui/src/routes/pipeline/components/duration.tsx
@@ -22,7 +22,7 @@ import { IPipelineStatus } from '@/types';
const duration = (minute: number) => {
if (minute < 1) {
- return '1m';
+ return '< 1m';
}
if (minute < 60) {