We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d2828f commit b65348cCopy full SHA for b65348c
frontend/server/workflow-helper.ts
@@ -141,6 +141,7 @@ export function createPodLogsMinioRequestConfig(
141
const createdAtArray = createdAt.split("-")
142
143
let key: string = keyFormat
144
+ .replace(/\s+/g, '') // Remove all whitespace.
145
.replace("{{workflow.name}}", podName.replace(/-system-container-impl-.*/, ''))
146
.replace("{{workflow.creationTimestamp.Y}}", createdAtArray[0])
147
.replace("{{workflow.creationTimestamp.m}}", createdAtArray[1])
0 commit comments