Skip to content

Commit b5a0dda

Browse files
committed
fix: gan progress bar label
1 parent 94f6834 commit b5a0dda

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/migration/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export type ComponentType =
1313
| 'Flexcards'
1414
| 'Omniscripts'
1515
| 'Integration Procedures'
16-
| 'GlobalAutoNumber';
16+
| 'Omni Global Auto Numbers';
1717
export type RelatedObjectType = 'Flexipage' | 'ExperienceSites' | 'Lightning Web Components' | 'Apex Classes';
1818

1919
/**

src/migration/globalautonumber.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ export class GlobalAutoNumberMigrationTool extends BaseMigrationTool implements
208208
this.messages.getMessage('foundGlobalAutoNumbersToMigrate', [this.globalAutoNumberSettings.length])
209209
);
210210

211-
const progressBar = createProgressBar('Migrating', 'GlobalAutoNumber');
211+
const progressBar = createProgressBar('Migrating', 'Omni Global Auto Numbers');
212212
progressBar.start(this.globalAutoNumberSettings.length, progressCounter);
213213

214214
for (let autonumber of this.globalAutoNumberSettings) {
@@ -293,7 +293,7 @@ export class GlobalAutoNumberMigrationTool extends BaseMigrationTool implements
293293
): Promise<GlobalAutoNumberAssessmentInfo[]> {
294294
const globalAutoNumberAssessmentInfos: GlobalAutoNumberAssessmentInfo[] = [];
295295
let progressCounter = 0;
296-
const progressBar = createProgressBar('Assessing', 'GlobalAutoNumber');
296+
const progressBar = createProgressBar('Assessing', 'Omni Global Auto Numbers');
297297
progressBar.start(globalAutoNumbers.length, progressCounter);
298298
const uniqueNames = new Set<string>();
299299

0 commit comments

Comments
 (0)