From 268d2fb92c3f785169dfab38e2ffc6352a780c6e Mon Sep 17 00:00:00 2001 From: Carson Moore Date: Wed, 1 Nov 2023 16:17:51 -0500 Subject: [PATCH] pr feedback --- .../data-frame/components/DataFrameQueryEditor.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/datasources/data-frame/components/DataFrameQueryEditor.tsx b/src/datasources/data-frame/components/DataFrameQueryEditor.tsx index 1d3faeb..b27d552 100644 --- a/src/datasources/data-frame/components/DataFrameQueryEditor.tsx +++ b/src/datasources/data-frame/components/DataFrameQueryEditor.tsx @@ -138,15 +138,14 @@ const getVariableOptions = () => { }; const tooltips = { - queryType: `Data allows you to visualize the rows of data in a table. Metadata allows you - to visualize the properties associated with a table.`, + queryType: `Specifies whether to visualize the data rows or properties associated with a table.`, columns: `Specifies the columns to include in the response data.`, decimation: `Specifies the method used to decimate the data.`, - filterNulls: `Filters out null and NaN values before decimating the data.`, + filterNulls: `Specifies whether to filter out null and NaN values before decimating the data.`, - useTimeRange: `Queries only for data within the dashboard time range if the table index is a - timestamp. Enable when interacting with your data on a graph.`, + useTimeRange: `Specifies whether to query only for data within the dashboard time range if the + table index is a timestamp. Enable when interacting with your data on a graph.`, };