feat(web): logs improvements (#284)

feat: add log searching
feat: wrap parent container to add a scrollbar on overflow so it doesn't push the page lower with each message
feat: switch to showing time instead of date+time
This commit is contained in:
stacksmash76 2022-05-25 20:54:40 +02:00 committed by GitHub
parent f836272fe6
commit 52fad1da95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 73 additions and 38 deletions

View file

@ -64,7 +64,7 @@ declare module "react-table" {
// note that having Record here allows you to add anything to the options, this matches the spirit of the
// underlying js library, but might be cleaner if it's replaced by a more specific type that matches your
// feature set, this is a safe default.
Record<string, any> {}
Record<string, unknown> {}
export interface Hooks<D extends Record<string, unknown> = Record<string, unknown>>
extends UseExpandedHooks<D>,