Skip to content

Commit 333e4b2

Browse files
committed
fix: label feedback
1 parent 74ac6cc commit 333e4b2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/utils/resultsbuilder/FlexipageAssessmentReporter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ export class FlexipageAssessmentReporter {
4848
omnistudioOrgDetails: OmnistudioOrgDetails
4949
): ReportParam {
5050
return {
51-
title: 'Flexipages Assessment Report',
52-
heading: 'Flexipages Assessment Report',
51+
title: 'FlexiPages Assessment Report',
52+
heading: 'FlexiPages Assessment Report',
5353
org: getOrgDetailsForReport(omnistudioOrgDetails),
5454
assessmentDate: new Date().toString(),
5555
total: flexipageAssessmentInfos?.length || 0,

src/utils/resultsbuilder/OSAssessmentReporter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ export class OSAssessmentReporter {
2121
): ReportParam {
2222
Logger.captureVerboseData('OS data:', OSAssessmentInfos);
2323
return {
24-
title: 'OmniScripts Assessment Report',
25-
heading: 'OmniScripts Assessment Report',
24+
title: 'Omniscripts Assessment Report',
25+
heading: 'Omniscripts Assessment Report',
2626
org: getOrgDetailsForReport(omnistudioOrgDetails),
2727
assessmentDate: new Date().toLocaleString(),
2828
total: OSAssessmentInfos?.length || 0,

src/utils/resultsbuilder/assessmentReporter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ export class AssessmentReporter {
313313
}
314314
if (reports.includes(Constants.Omniscript)) {
315315
summaryItems.push({
316-
name: 'OmniScripts',
316+
name: 'Omniscripts',
317317
total: result.omniAssessmentInfo.osAssessmentInfos.length,
318318
data: OSAssessmentReporter.getSummaryData(result.omniAssessmentInfo.osAssessmentInfos),
319319
file: this.omniscriptAssessmentFileName,

0 commit comments

Comments
 (0)