Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rvantonder committed Sep 26, 2020
1 parent 3576c61 commit 0498375
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion web/src/SourcegraphWebApp.tsx
Expand Up @@ -184,7 +184,7 @@ interface SourcegraphWebAppState extends SettingsCascadeProps {
globbing: boolean

/**
* Whether we show the mulitiline editor at /search/console
* Whether we show the mulitiline editor at /search/console
*/
showMultilineSearchConsole: boolean
}
Expand Down
4 changes: 2 additions & 2 deletions web/src/search/SearchConsolePage.scss
Expand Up @@ -3,5 +3,5 @@
}

.btn {
font-size: 16px
}
font-size: 16px;
}
8 changes: 6 additions & 2 deletions web/src/search/SearchConsolePage.tsx
Expand Up @@ -148,8 +148,12 @@ export const SearchConsolePage: React.FunctionComponent<SearchConsolePageProps>
{resultsOrError &&
(resultsOrError === 'loading' ? (
<LoadingSpinner />
) : (
<SearchResultsList {...props} resultsOrError={resultsOrError} onShowMoreResultsClick={showMoreResults}/>
) : (
<SearchResultsList
{...props}
resultsOrError={resultsOrError}
onShowMoreResultsClick={showMoreResults}
/>
))}
</div>
</div>
Expand Down

0 comments on commit 0498375

Please sign in to comment.