Skip to content

Commit 133b812

Browse files
Merge pull request #2648 from devtron-labs/feat/poll-release-status
feat: add polling for release status in trigger release view
2 parents 51e337c + 9d168f7 commit 133b812

File tree

4 files changed

+161
-152
lines changed

4 files changed

+161
-152
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"homepage": "/dashboard",
66
"dependencies": {
7-
"@devtron-labs/devtron-fe-common-lib": "1.11.0-pre-1",
7+
"@devtron-labs/devtron-fe-common-lib": "1.11.0-pre-2",
88
"@esbuild-plugins/node-globals-polyfill": "0.2.3",
99
"@rjsf/core": "^5.13.3",
1010
"@rjsf/utils": "^5.13.3",

src/components/common/helpers/time.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ export function handleUTCTime(ts: string, isRelativeTime = false) {
3939
}
4040

4141
export const getTimeElapsed = (start: Dayjs, now: Dayjs) => {
42-
return getTimeDifference(start?.toISOString(), now?.toISOString())
42+
return getTimeDifference({ startTime: start?.toISOString(), endTime: now?.toISOString() })
4343
}

src/css/base.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3254,6 +3254,10 @@ button.anchor {
32543254

32553255
.h-18 {
32563256
height: 18px;
3257+
3258+
&--imp {
3259+
height: 18px !important;
3260+
}
32573261
}
32583262

32593263
.h-20 {

0 commit comments

Comments
 (0)