fixed a typo in one of the components

This commit is contained in:
Jonas Winkler 2020-11-23 23:39:42 +01:00
parent f4013b1343
commit cd6e7d9563
6 changed files with 13 additions and 13 deletions

View file

@ -0,0 +1,19 @@
import { Component, Input, OnInit } from '@angular/core';
import { SearchHitHighlight } from 'src/app/data/search-result';
@Component({
selector: 'app-result-highlight',
templateUrl: './result-highlight.component.html',
styleUrls: ['./result-highlight.component.scss']
})
export class ResultHighlightComponent implements OnInit {
constructor() { }
@Input()
highlights: SearchHitHighlight[][]
ngOnInit(): void {
}
}