diff --git a/reana-ui/src/pages/workflowList/components/Welcome.js b/reana-ui/src/pages/workflowList/components/Welcome.js index 8bed9a89..2cf37aef 100644 --- a/reana-ui/src/pages/workflowList/components/Welcome.js +++ b/reana-ui/src/pages/workflowList/components/Welcome.js @@ -2,7 +2,7 @@ -*- coding: utf-8 -*- This file is part of REANA. - Copyright (C) 2020 CERN. + Copyright (C) 2020, 2022 CERN. REANA is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. @@ -130,7 +130,7 @@ export function WelcomeNoTokenMsg() {
- {moment.utc(tokenRequestedAt).format("YYYY-MM-DDThh:mm:ss")} + {moment.utc(tokenRequestedAt).format("YYYY-MM-DDTHH:mm:ss")} ) : ( diff --git a/reana-ui/src/util.js b/reana-ui/src/util.js index 56c4b4a9..a42037b0 100644 --- a/reana-ui/src/util.js +++ b/reana-ui/src/util.js @@ -98,7 +98,7 @@ function parseWorkflowRetentionRules(workflow) { ? getTimeBeforeExecution(applyOn, currentTime) : null; return { - applyOn: applyOn ? applyOn.format("YYYY-MM-DDThh:mm:ss") : null, + applyOn: applyOn ? applyOn.format("YYYY-MM-DDTHH:mm:ss") : null, timeBeforeExecution, retentionDays: retention_days, workspaceFiles: workspace_files,