mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
chore(note_autocomplete): remove logging
This commit is contained in:
parent
adcb803caa
commit
b94bda6670
@ -1,6 +1,5 @@
|
|||||||
import server from "./server.js";
|
import server from "./server.js";
|
||||||
import appContext from "../components/app_context.js";
|
import appContext from "../components/app_context.js";
|
||||||
import utils from "./utils.js";
|
|
||||||
import noteCreateService from "./note_create.js";
|
import noteCreateService from "./note_create.js";
|
||||||
import froca from "./froca.js";
|
import froca from "./froca.js";
|
||||||
import { t } from "./i18n.js";
|
import { t } from "./i18n.js";
|
||||||
@ -12,7 +11,6 @@ const SELECTED_EXTERNAL_LINK_KEY = "data-external-link";
|
|||||||
|
|
||||||
// To prevent search lag when there are a large number of notes, set a delay based on the number of notes to avoid jitter.
|
// To prevent search lag when there are a large number of notes, set a delay based on the number of notes to avoid jitter.
|
||||||
const notesCount = await server.get<number>(`autocomplete/notesCount`);
|
const notesCount = await server.get<number>(`autocomplete/notesCount`);
|
||||||
console.log(notesCount);
|
|
||||||
let debounceTimeoutId: ReturnType<typeof setTimeout>;
|
let debounceTimeoutId: ReturnType<typeof setTimeout>;
|
||||||
|
|
||||||
function getSearchDelay(notesCount: number): number {
|
function getSearchDelay(notesCount: number): number {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user