Fix autocomplete for Logs plugin

Summary: It was a typo before

Reviewed By: passy

Differential Revision: D51502529

fbshipit-source-id: c4ed789b382301ba9e183e5dd7a491592efd22dd
This commit is contained in:
Andrey Goncharov
2023-11-21 11:40:23 -08:00
committed by Facebook GitHub Bot
parent 294f39eceb
commit 202e6b6148

View File

@@ -149,7 +149,7 @@ export function devicePlugin(client: DevicePluginClient) {
const rows = createDataSource<ExtendedLogEntry>([], { const rows = createDataSource<ExtendedLogEntry>([], {
limit: 200000, limit: 200000,
persist: 'logs', persist: 'logs',
indices: [['pid'], ['tag']], //there are for inferring enum types indices: [['pidStr'], ['tag']], //there are for inferring enum types
}); });
const isPaused = createState(true); const isPaused = createState(true);
const tableManagerRef = createRef< const tableManagerRef = createRef<