mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
delint
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
f160a308b4
commit
f299f7e092
1 changed files with 5 additions and 3 deletions
|
@ -164,9 +164,11 @@ export default class UserProvider extends AutocompleteProvider {
|
|||
}
|
||||
|
||||
renderCompletions(completions: [React.Component]): ?React.Component {
|
||||
return <div className="mx_Autocomplete_Completion_container_pill" role="listbox" aria-label={_t("User Autocomplete")}>
|
||||
{ completions }
|
||||
</div>;
|
||||
return (
|
||||
<div className="mx_Autocomplete_Completion_container_pill" role="listbox" aria-label={_t("User Autocomplete")}>
|
||||
{ completions }
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
shouldForceComplete(): boolean {
|
||||
|
|
Loading…
Reference in a new issue