Skip to content

Commit

Permalink
docs: fix broken example due to missing input module import (#27637)
Browse files Browse the repository at this point in the history
(cherry picked from commit 595b3da)
  • Loading branch information
guiseek authored and crisbeto committed Aug 13, 2023
1 parent 9ff32fd commit 69652b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components-examples/material/sidenav/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ ng_module(
"//src/material/select",
"//src/material/sidenav",
"//src/material/toolbar",
"//src/material/input",
"@npm//@angular/forms",
"@npm//@angular/platform-browser",
"@npm//@angular/platform-browser-dynamic",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {MatFormFieldModule} from '@angular/material/form-field';
import {MatCheckboxModule} from '@angular/material/checkbox';
import {MatSidenavModule} from '@angular/material/sidenav';
import {MatToolbarModule} from '@angular/material/toolbar';
import {MatInputModule} from '@angular/material/input';
import {NgIf} from '@angular/common';

/** @title Fixed sidenav */
Expand All @@ -22,6 +23,7 @@ import {NgIf} from '@angular/common';
MatCheckboxModule,
MatFormFieldModule,
MatButtonModule,
MatInputModule,
],
})
export class SidenavFixedExample {
Expand Down

0 comments on commit 69652b0

Please sign in to comment.