From 202e6b6148e692409500b7deb4ca708f8749abe4 Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Tue, 21 Nov 2023 11:40:23 -0800 Subject: [PATCH] Fix autocomplete for Logs plugin Summary: It was a typo before Reviewed By: passy Differential Revision: D51502529 fbshipit-source-id: c4ed789b382301ba9e183e5dd7a491592efd22dd --- desktop/plugins/public/logs/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/plugins/public/logs/index.tsx b/desktop/plugins/public/logs/index.tsx index 5d0e6de10..e4ade415c 100644 --- a/desktop/plugins/public/logs/index.tsx +++ b/desktop/plugins/public/logs/index.tsx @@ -149,7 +149,7 @@ export function devicePlugin(client: DevicePluginClient) { const rows = createDataSource([], { limit: 200000, 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 tableManagerRef = createRef<