diff --git a/src/electron/views/report/unified-report-section-factory.ts b/src/electron/views/report/unified-report-section-factory.ts index 4793dc0a041..f66bcaaef95 100644 --- a/src/electron/views/report/unified-report-section-factory.ts +++ b/src/electron/views/report/unified-report-section-factory.ts @@ -1,13 +1,13 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. import { FailedInstancesSection } from 'common/components/cards/failed-instances-section'; +import { NullComponent } from 'common/components/null-component'; import { UnifiedReportHead } from 'electron/views/report/unified-report-head'; import { BodySection } from 'reports/components/report-sections/body-section'; import { ContentContainer } from 'reports/components/report-sections/content-container'; import { DetailsSection } from 'reports/components/report-sections/details-section'; import { FooterTextForUnified } from 'reports/components/report-sections/footer-text-for-unified'; import { HeaderSection } from 'reports/components/report-sections/header-section'; -import { NotApplicableChecksSection } from 'reports/components/report-sections/not-applicable-checks-section'; import { PassedChecksSection } from 'reports/components/report-sections/passed-checks-section'; import { ReportFooter } from 'reports/components/report-sections/report-footer'; import { ReportSectionFactory } from 'reports/components/report-sections/report-section-factory'; @@ -26,7 +26,7 @@ export const UnifiedReportSectionFactory: ReportSectionFactory = { ResultsContainer, FailedInstancesSection, PassedChecksSection, - NotApplicableChecksSection, + NotApplicableChecksSection: NullComponent, FooterSection: ReportFooter, FooterText: FooterTextForUnified, }; diff --git a/src/electron/views/root-container/components/root-container.scss b/src/electron/views/root-container/components/root-container.scss index 263ee6618d1..28ecb249c44 100644 --- a/src/electron/views/root-container/components/root-container.scss +++ b/src/electron/views/root-container/components/root-container.scss @@ -7,7 +7,6 @@ body { margin: 0px; height: 100%; width: 100%; - overflow: hidden; background-color: $neutral-0; font-family: $fontFamily; } diff --git a/src/reports/components/report-sections/footer-text-for-unified.tsx b/src/reports/components/report-sections/footer-text-for-unified.tsx index c3960c38089..34ef0380162 100644 --- a/src/reports/components/report-sections/footer-text-for-unified.tsx +++ b/src/reports/components/report-sections/footer-text-for-unified.tsx @@ -11,7 +11,7 @@ export const FooterTextForUnified = NamedFC( return ( <> This automated checks result was generated using{' '} - {`${toolData.applicationProperties.name} ${toolData.applicationProperties.version} (axe-core ${toolData.scanEngineProperties.version})`} + {`${toolData.applicationProperties.name} ${toolData.applicationProperties.version} (${toolData.scanEngineProperties.name} ${toolData.scanEngineProperties.version})`} , a tool that helps debug and find accessibility issues earlier. Get more information & download this tool at . diff --git a/src/tests/unit/tests/reports/components/report-sections/__snapshots__/footer-text-for-unified.test.tsx.snap b/src/tests/unit/tests/reports/components/report-sections/__snapshots__/footer-text-for-unified.test.tsx.snap index a17f52dc479..7d47c7ee282 100644 --- a/src/tests/unit/tests/reports/components/report-sections/__snapshots__/footer-text-for-unified.test.tsx.snap +++ b/src/tests/unit/tests/reports/components/report-sections/__snapshots__/footer-text-for-unified.test.tsx.snap @@ -4,7 +4,7 @@ exports[`FooterText renders 1`] = ` This automated checks result was generated using - app-name app-version (axe-core engine-version) + app-name app-version (engine-name engine-version) , a tool that helps debug and find accessibility issues earlier. Get more information & download this tool at .