Skip to content

Commit

Permalink
fix: source member tracking percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Aug 28, 2024
1 parent cb986cb commit 7da036f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/utils/deployStages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export class DeployStages {
label: 'Deploy ID',
get: (data): string | undefined => data?.id,
type: 'static-key-value',
neverCollapse: true,
},
{
label: 'Target Org',
Expand Down Expand Up @@ -104,10 +105,7 @@ export class DeployStages {
label: 'Members',
get: (data): string | undefined =>
data?.sourceMemberPolling?.original
? formatProgress(
data.sourceMemberPolling.original - data.sourceMemberPolling.remaining,
data.sourceMemberPolling.original
)
? formatProgress(data.sourceMemberPolling.remaining, data.sourceMemberPolling.original)
: undefined,
stage: 'Updating Source Tracking',
type: 'dynamic-key-value',
Expand Down

0 comments on commit 7da036f

Please sign in to comment.