ignore linter errors in org-result items
This commit is contained in:
parent
a5b786a749
commit
8f164ca94a
2 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,7 @@ interface OrgData {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
// tslint:disable-next-line
|
||||||
selector: '[org-result]',
|
selector: '[org-result]',
|
||||||
templateUrl: 'org-result.component.html',
|
templateUrl: 'org-result.component.html',
|
||||||
})
|
})
|
||||||
|
@ -19,6 +20,6 @@ export class OrgResultComponent {
|
||||||
public orgClick(): void {
|
public orgClick(): void {
|
||||||
this.onClick.emit(
|
this.onClick.emit(
|
||||||
this.org
|
this.org
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@ interface OrgData {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
// tslint:disable-next-line
|
||||||
selector: 'org-table',
|
selector: 'org-table',
|
||||||
templateUrl: 'org-table.component.html',
|
templateUrl: 'org-table.component.html',
|
||||||
})
|
})
|
||||||
|
|
Reference in a new issue