From 097f5435d99cf9c0eab39428c32feb4116ce81df Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Fri, 5 Jul 2024 16:31:58 -0700 Subject: [PATCH] fix: linux install instructions showing up (#138) --- src/app/start/start-overview.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/start/start-overview.component.ts b/src/app/start/start-overview.component.ts index b5d0ad34..391e137a 100644 --- a/src/app/start/start-overview.component.ts +++ b/src/app/start/start-overview.component.ts @@ -8,6 +8,7 @@ import {SidenavSectionComponent} from '../../components/layout/sidenav-section/s import {FormsModule} from '@angular/forms'; import {PrismComponent} from '../../components/prism/prism.component'; import {CodeBlockVariationComponent} from '../../components/code-block-variation/code-block-variation.component'; +import {CodeBlockVariationOptionDirective} from '../../components/code-block-variation/code-block-variation-option.directive'; const OS_OPTIONS = [ { @@ -47,6 +48,7 @@ function getCurrentOs(): OperatingSystem { FormsModule, PrismComponent, CodeBlockVariationComponent, + CodeBlockVariationOptionDirective, ], }) export class StartOverviewComponent {