Skip to content
Snippets Groups Projects
Commit f374bf7f authored by Valentin Perrelle's avatar Valentin Perrelle Committed by Loïc Correnson
Browse files

[ivette] fix lint problems

parent 7af0ae54
No related branches found
No related tags found
No related merge requests found
...@@ -383,7 +383,7 @@ function scrollToRef(r: null | HTMLLabelElement): void { ...@@ -383,7 +383,7 @@ function scrollToRef(r: null | HTMLLabelElement): void {
function Suggestions(props: SuggestionsProps): JSX.Element { function Suggestions(props: SuggestionsProps): JSX.Element {
const { hints, onHint, index, onClose } = props; const { hints, onHint, index, onClose } = props;
const theHints = hints.length > 100 ? hints.slice(0,100) : hints; const theHints = hints.length > 100 ? hints.slice(0, 100) : hints;
const suggestions = theHints.map((h, k) => { const suggestions = theHints.map((h, k) => {
const selected = k === index || hints.length === 1; const selected = k === index || hints.length === 1;
const classSelected = selected && 'dome-xToolBar-searchIndex'; const classSelected = selected && 'dome-xToolBar-searchIndex';
...@@ -415,7 +415,9 @@ function Suggestions(props: SuggestionsProps): JSX.Element { ...@@ -415,7 +415,9 @@ function Suggestions(props: SuggestionsProps): JSX.Element {
onMouseDown={(event) => event.preventDefault()} onMouseDown={(event) => event.preventDefault()}
> >
{suggestions} {suggestions}
{hints.length > 100 ? <Label>({hints.length - 100} omitted)</Label> : null} {hints.length > 100 ?
<Label>({hints.length - 100} omitted)</Label> :
null}
</div> </div>
); );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment