diff --git a/public/app/features/explore/Logs/LogsTable.tsx b/public/app/features/explore/Logs/LogsTable.tsx index 1489853096d..48719cce8ce 100644 --- a/public/app/features/explore/Logs/LogsTable.tsx +++ b/public/app/features/explore/Logs/LogsTable.tsx @@ -176,7 +176,9 @@ const isFieldFilterable = (field: Field, logsFrame?: LogsFrame | undefined) => { if (logsFrame.timeField.name === field.name) { return false; } - // @todo not currently excluding derived fields from filtering + if (field.config.links?.length) { + return false; + } return true; };