Skip to content

Commit

Permalink
Update elv-lro-status
Browse files Browse the repository at this point in the history
  • Loading branch information
elv-zenia committed Feb 1, 2023
1 parent 1764dc4 commit 7b9b2c6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"dependencies": {
"@eluvio/elv-abr-profile": "^1.0.0",
"@eluvio/elv-client-js": "^4.0.0",
"@eluvio/elv-lro-status": "^3.0.5",
"@eluvio/elv-lro-status": "^3.0.6",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-tooltip": "^1.0.0",
"mobx": "^6.6.0",
Expand Down
2 changes: 1 addition & 1 deletion src/stores/IngestStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ class IngestStore {
ingest: {
runState: run_state,
estimatedTimeLeft:
(!estimated_time_left_seconds && run_state === "running") ? "Calculating..." : estimated_time_left_h_m_s ? `${estimated_time_left_h_m_s} remaining` : ""
(estimated_time_left_seconds === undefined && run_state === "running") ? "Calculating..." : estimated_time_left_h_m_s ? `${estimated_time_left_h_m_s} remaining` : ""
},
formData: {
...this.jobs[masterObjectId].formData,
Expand Down

0 comments on commit 7b9b2c6

Please sign in to comment.