mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 10:39:00 +01:00
fix(client): search results taking up space when not needed
This commit is contained in:
parent
25e1c45562
commit
a7a8f806e8
@ -4,7 +4,6 @@ import Alert from "./react/Alert";
|
|||||||
import { useNoteContext, useTriliumEvent } from "./react/hooks";
|
import { useNoteContext, useTriliumEvent } from "./react/hooks";
|
||||||
import "./search_result.css";
|
import "./search_result.css";
|
||||||
import { SearchNoteList } from "./collections/NoteList";
|
import { SearchNoteList } from "./collections/NoteList";
|
||||||
// import NoteListRenderer from "../services/note_list_renderer";
|
|
||||||
|
|
||||||
enum SearchResultState {
|
enum SearchResultState {
|
||||||
NO_RESULTS,
|
NO_RESULTS,
|
||||||
@ -43,7 +42,7 @@ export default function SearchResult() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="search-result-widget">
|
<div className={`search-result-widget ${!state ? "hidden-ext" : ""}`}>
|
||||||
{state === SearchResultState.NOT_EXECUTED && (
|
{state === SearchResultState.NOT_EXECUTED && (
|
||||||
<Alert type="info" className="search-not-executed-yet">{t("search_result.search_not_executed")}</Alert>
|
<Alert type="info" className="search-not-executed-yet">{t("search_result.search_not_executed")}</Alert>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user