Skip to content
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.

Commit

Permalink
Fix textarea module name (#253)
Browse files Browse the repository at this point in the history
Fixes #252
  • Loading branch information
scote authored and jfcere committed Nov 27, 2017
1 parent ba9efb9 commit 1d8b6c0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions demo-app/src/app/textarea/textarea.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';
import { MzCheckboxModule, MzIconMdiModule, MzInputModule, MzTextAreaModule } from 'ng2-materialize';
import { MzCheckboxModule, MzIconMdiModule, MzInputModule, MzTextareaModule } from 'ng2-materialize';

import { CodeSnippetModule } from '../shared/code-snippet/code-snippet.module';
import { PropertiesTableModule } from '../shared/properties-table/properties-table.module';
Expand All @@ -17,7 +17,7 @@ import { ROUTES } from './textarea.routing';
MzCheckboxModule,
MzIconMdiModule,
MzInputModule,
MzTextAreaModule,
MzTextareaModule,
PropertiesTableModule,
RouterModule.forChild(ROUTES),
],
Expand Down
4 changes: 2 additions & 2 deletions demo-app/src/app/validation/validation.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
MzInputModule,
MzRadioButtonModule,
MzSelectModule,
MzTextAreaModule,
MzTextareaModule,
MzTimepickerModule,
MzValidationModule,
} from 'ng2-materialize';
Expand Down Expand Up @@ -41,7 +41,7 @@ import { ROUTES } from './validation.routing';
MzInputModule,
MzRadioButtonModule,
MzSelectModule,
MzTextAreaModule,
MzTextareaModule,
MzTimepickerModule,
MzValidationModule,
PropertiesTableModule,
Expand Down
4 changes: 2 additions & 2 deletions src/app/materialize.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { MzSidenavModule } from './sidenav';
import { MzSpinnerModule } from './spinner';
import { MzSwitchModule } from './switch';
import { MzTabModule } from './tab';
import { MzTextAreaModule } from './textarea';
import { MzTextareaModule } from './textarea';
import { MzTimepickerModule } from './timepicker';
import { MzToastModule } from './toast';
import { MzTooltipModule } from './tooltip';
Expand Down Expand Up @@ -58,7 +58,7 @@ const MZ_MODULES = [
MzSpinnerModule,
MzSwitchModule,
MzTabModule,
MzTextAreaModule,
MzTextareaModule,
MzTimepickerModule,
MzToastModule,
MzTooltipModule,
Expand Down
2 changes: 1 addition & 1 deletion src/app/textarea/textarea.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ import { MzTextareaDirective } from './textarea.directive';
MzTextareaPrefixDirective,
],
})
export class MzTextAreaModule { }
export class MzTextareaModule { }

0 comments on commit 1d8b6c0

Please sign in to comment.