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 84eab4d commit b87c274Copy full SHA for b87c274
src/commands/omnistudio/migration/migrate.ts
@@ -452,7 +452,11 @@ export default class Migrate extends OmniStudioBaseCommand {
452
let errors: any[] = obj.errors || [];
453
errors = errors.concat(recordResults.errors || []);
454
455
- obj.status = 'Hardcoded';
+ obj.status = recordResults?.skipped
456
+ ? messages.getMessage('labelStatusSkipped')
457
+ : !recordResults || recordResults.hasErrors
458
+ ? messages.getMessage('labelStatusFailed')
459
+ : messages.getMessage('labelStatusComplete');
460
obj.errors = errors;
461
obj.migratedId = recordResults.id;
462
obj.warnings = recordResults.warnings;
0 commit comments