We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04c5b1d commit 7bc567dCopy full SHA for 7bc567d
src/search/search.component.ts
@@ -6,7 +6,7 @@ import {
6
HostBinding
7
} from "@angular/core";
8
import { NG_VALUE_ACCESSOR, ControlValueAccessor } from "@angular/forms";
9
-import { I18n } from "src/i18n/i18n.module";
+import { I18n } from "./../i18n/i18n.module";
10
11
/**
12
* Used to emit changes performed on search components.
@@ -151,7 +151,7 @@ export class Search implements ControlValueAccessor {
151
* @param i18n The i18n translations.
152
* @memberof Search
153
*/
154
- constructor(protected i18n: I18n) {
+ constructor(private i18n: I18n) {
155
Search.searchCount++;
156
}
157
0 commit comments