Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit 7b53cfc

Browse files
committed
Add missing tooltip module to theme picker
1 parent b63a914 commit 7b53cfc

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/app/shared/theme-picker/theme-picker.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import {Component, ViewEncapsulation, ChangeDetectionStrategy, NgModule} from '@angular/core';
22
import {StyleManager} from '../style-manager/style-manager';
33
import {ThemeStorage, DocsSiteTheme} from './theme-storage/theme-storage';
4-
import {MdButtonModule, MdGridListModule, MdIconModule, MdMenuModule} from '@angular/material';
4+
import {
5+
MdButtonModule, MdGridListModule, MdIconModule, MdMenuModule,
6+
MdTooltipModule
7+
} from '@angular/material';
58
import {CommonModule} from '@angular/common';
69

710

@@ -74,7 +77,14 @@ export class ThemePicker {
7477
}
7578

7679
@NgModule({
77-
imports: [MdButtonModule, MdIconModule, MdMenuModule, MdGridListModule, CommonModule],
80+
imports: [
81+
MdButtonModule,
82+
MdIconModule,
83+
MdMenuModule,
84+
MdGridListModule,
85+
MdTooltipModule,
86+
CommonModule
87+
],
7888
exports: [ThemePicker],
7989
declarations: [ThemePicker],
8090
providers: [StyleManager, ThemeStorage],

0 commit comments

Comments
 (0)