Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
fix(textfield): Use correct Ripple import path
Browse files Browse the repository at this point in the history
  • Loading branch information
trimox committed Aug 2, 2017
1 parent a33f808 commit c4d23b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/textfield/textfield-box.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
HostBinding,
OnInit,
} from '@angular/core';
import { Ripple } from '.././ripple/ripple.directive';
import { Ripple } from '../ripple/ripple.directive';
import { TextfieldComponent } from './textfield.component';

@Component({
Expand Down
2 changes: 1 addition & 1 deletion src/lib/textfield/textfield.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import { NG_VALUE_ACCESSOR, ControlValueAccessor } from '@angular/forms';
import { EventRegistry } from '../common/event-registry';
import { toBoolean } from '../common/boolean-property';
import { Ripple } from '.././ripple/ripple.directive';
import { Ripple } from '../ripple/ripple.directive';

import { MDCTextfieldAdapter } from './textfield-adapter';
import { MDCTextfieldFoundation } from '@material/textfield';
Expand Down

0 comments on commit c4d23b6

Please sign in to comment.