1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Decrease scroll to bottom timeout time a bit

Signed-off-by: alexfront <alex.andreev.email@gmail.com>
This commit is contained in:
alexfront 2022-09-09 11:27:44 +03:00
parent 0383666f23
commit 0de9b9c168

View File

@ -10,6 +10,6 @@ export function useInitialScrollToBottom(model: LogTabViewModel, callback: () =>
// TODO: Consider more precise way to check when list ready to scroll
setTimeout(() => {
callback();
}, 800); // Giving some time virtual library to render its rows
}, 500); // Giving some time virtual library to render its rows
}, [model.logTabData.get()?.selectedPodId]);
}