This is an automated email from the ASF dual-hosted git repository. abeizn pushed a commit to branch release-v1.0 in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
commit 12996ff2cd5a750cd5e9b0ec9e781b8b96f08429 Author: 青湛 <[email protected]> AuthorDate: Thu Mar 28 16:23:34 2024 +1300 fix: adjust the collect default time to 14 days (#7231) --- config-ui/src/routes/onboard/step-3.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config-ui/src/routes/onboard/step-3.tsx b/config-ui/src/routes/onboard/step-3.tsx index 3fba3cfff..35f7c93db 100644 --- a/config-ui/src/routes/onboard/step-3.tsx +++ b/config-ui/src/routes/onboard/step-3.tsx @@ -82,7 +82,7 @@ export const Step3 = () => { cronConfig: presets[0], isManual: false, skipOnFail: true, - timeAfter: formatTime(dayjs().subtract(6, 'month').startOf('day').toDate(), 'YYYY-MM-DD[T]HH:mm:ssZ'), + timeAfter: formatTime(dayjs().subtract(14, 'day').startOf('day').toDate(), 'YYYY-MM-DD[T]HH:mm:ssZ'), connections: [ { pluginName: plugin,
