Skip to content

Commit

Permalink
- update value usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyusung4698 committed Jan 6, 2020
1 parent d92c4c0 commit 1ab4fae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</button>
<mat-form-field>
<mat-label>Command</mat-label>
<input matInput [(value)]="command.text">
<input matInput [(ngModel)]="command.text">
</mat-form-field>
<app-accelerator label="Shortcut" [(value)]="command.shortcut">
</app-accelerator>
Expand Down
2 changes: 2 additions & 0 deletions src/app/shared/shared.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { DragDropModule } from '@angular/cdk/drag-drop';
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { RouterModule } from '@angular/router';
Expand All @@ -18,6 +19,7 @@ import { PoeModule } from './module/poe/poe.module';
BrowserModule,
BrowserAnimationsModule,
DragDropModule,
FormsModule,

// third party
NgxChartsModule,
Expand Down

0 comments on commit 1ab4fae

Please sign in to comment.