Skip to content

Commit 7bc567d

Browse files
author
esuau
committed
fix(notification): Fix path issue in i18n import
1 parent 04c5b1d commit 7bc567d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/search/search.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
HostBinding
77
} from "@angular/core";
88
import { NG_VALUE_ACCESSOR, ControlValueAccessor } from "@angular/forms";
9-
import { I18n } from "src/i18n/i18n.module";
9+
import { I18n } from "./../i18n/i18n.module";
1010

1111
/**
1212
* Used to emit changes performed on search components.
@@ -151,7 +151,7 @@ export class Search implements ControlValueAccessor {
151151
* @param i18n The i18n translations.
152152
* @memberof Search
153153
*/
154-
constructor(protected i18n: I18n) {
154+
constructor(private i18n: I18n) {
155155
Search.searchCount++;
156156
}
157157

0 commit comments

Comments
 (0)