-
Notifications
You must be signed in to change notification settings - Fork 10
@W-19050490 fix: mvp bugs #338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@W-19050490 fix: mvp bugs #338
Conversation
src/migration/related/OmnistudioRelatedObjectMigrationFacade.ts
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the LWC related changes and check-in of MVP fixes
src/migration/related/OmnistudioRelatedObjectMigrationFacade.ts
Outdated
Show resolved
Hide resolved
src/utils/interfaces.ts
Outdated
} | ||
|
||
export interface OmniAssessmentInfo { | ||
osAssessmentInfos: OSAssessmentInfo[]; | ||
ipAssessmentInfos: IPAssessmentInfo[]; | ||
} | ||
|
||
export interface SitesAssessmentInfo { | ||
name: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clean up this one, it is unused code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
apexDependencies: [], | ||
migrationStatus: 'Failed', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit, Failed, Can be Automated, other status can be moved to constants.
@@ -170,7 +192,18 @@ export class IPAssessmentReporter { | |||
]; | |||
} | |||
|
|||
private static getFilterGroupsForReport(): FilterGroupParam[] { | |||
return []; | |||
private static getFilterGroupsForReport(ipAssessmentInfo: IPAssessmentInfo[]): FilterGroupParam[] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be moved to some common file/util? Based on migration status the filtering is happening and all four components seem to have that field.
Since the target is prerelease/alpha and not prerelease/alphaGA and the branches would diverge, what is the plan to merge prerelease/alphaGA to main? |
What does this PR do?
What issues does this PR fix or reference?