diff --git a/public/components/common/search/search.tsx b/public/components/common/search/search.tsx
index 1fff9b1c28..488ded7a2b 100644
--- a/public/components/common/search/search.tsx
+++ b/public/components/common/search/search.tsx
@@ -310,7 +310,7 @@ export const Search = (props: any) => {
};
return (
-
+ (
@@ -411,7 +411,7 @@ export const Search = (props: any) => {
)}
{!(queryRedux.selectedTimestamp === '' && queryResults?.datarows) && ( // index with no timestamp, dont show timepicker
-
+ (
{!isLiveTailOn && (
{
isAppAnalytics={isAppAnalytics}
/>
)}
-
+ )
)}
{!showQueryArea && (
@@ -560,6 +560,6 @@ export const Search = (props: any) => {
)}
{flyout}
-
+
)
);
};
diff --git a/public/components/event_analytics/explorer/explorer.tsx b/public/components/event_analytics/explorer/explorer.tsx
index c481199fd4..7fdf487578 100644
--- a/public/components/event_analytics/explorer/explorer.tsx
+++ b/public/components/event_analytics/explorer/explorer.tsx
@@ -538,7 +538,7 @@ export const Explorer = ({
const mainContent = useMemo(() => {
return (
-
+ (
{explorerData && !isEmpty(explorerData.jsonData) ? (
{(isDefaultDataSourceType || appLogEvents) && query[SELECTED_TIMESTAMP] !== '' && (
@@ -667,7 +667,7 @@ export const Explorer = ({
) : (
)}
-
+
)
);
}, [
isPanelTextFieldInvalid,
diff --git a/public/components/notebooks/components/notebook.tsx b/public/components/notebooks/components/notebook.tsx
index e799333423..84ca74a6ce 100644
--- a/public/components/notebooks/components/notebook.tsx
+++ b/public/components/notebooks/components/notebook.tsx
@@ -918,7 +918,7 @@ export class Notebook extends Component {
) : null;
return (
-
+ (
@@ -1057,7 +1057,7 @@ export class Notebook extends Component {
>
) : (
// show default paragraph if no paragraphs in this notebook
-
+ (
@@ -1105,13 +1105,13 @@ export class Notebook extends Component {
-
+
)
)}
{showLoadingModal}
{this.state.isModalVisible && this.state.modalLayout}
-
+
)
);
}
}
diff --git a/public/components/notebooks/components/paragraph_components/para_input.tsx b/public/components/notebooks/components/paragraph_components/para_input.tsx
index 44a89ba5d1..6a408bae82 100644
--- a/public/components/notebooks/components/paragraph_components/para_input.tsx
+++ b/public/components/notebooks/components/paragraph_components/para_input.tsx
@@ -69,7 +69,7 @@ export const ParaInput = (props: {
const RenderParaInput = () => {
return (
-
+ (
{/* If the para is selected show the editor else display the code in the paragraph */}
{para.isSelected ? (
)}
-
+
)
);
};
diff --git a/public/components/trace_analytics/components/dashboard/dashboard_table.tsx b/public/components/trace_analytics/components/dashboard/dashboard_table.tsx
index 4386221dcd..45ff087f74 100644
--- a/public/components/trace_analytics/components/dashboard/dashboard_table.tsx
+++ b/public/components/trace_analytics/components/dashboard/dashboard_table.tsx
@@ -165,7 +165,7 @@ export function DashboardTable(props: {
const currPercentileFilter = filter ? filter.value : '';
return item ? (
// expand plot ranges to accommodate scale
- 1
@@ -197,7 +197,7 @@ export function DashboardTable(props: {
props.addPercentileFilter(condition, additionalFilters);
},
}}
- />
+ />)
) : (
'-'
);
diff --git a/public/components/trace_analytics/components/dashboard/top_latency_table.tsx b/public/components/trace_analytics/components/dashboard/top_latency_table.tsx
index ff8293b65b..24c1dfa822 100644
--- a/public/components/trace_analytics/components/dashboard/top_latency_table.tsx
+++ b/public/components/trace_analytics/components/dashboard/top_latency_table.tsx
@@ -175,7 +175,7 @@ export function LatencyTable(props: {
const currPercentileFilter = filter ? filter.value : '';
return item ? (
// expand plot ranges to accommodate scale
- 1
@@ -207,7 +207,7 @@ export function LatencyTable(props: {
props.addPercentileFilter(condition, additionalFilters);
},
}}
- />
+ />)
) : (
'-'
);
diff --git a/public/components/visualizations/charts/data_table/data_table.tsx b/public/components/visualizations/charts/data_table/data_table.tsx
index c340ff0d05..7986c883de 100644
--- a/public/components/visualizations/charts/data_table/data_table.tsx
+++ b/public/components/visualizations/charts/data_table/data_table.tsx
@@ -131,11 +131,11 @@ export const DataTable = ({ visualizations, layout, config }: any) => {
const onPageSizeChanged = useCallback(
(val: number) => {
setPageSize(val);
- gridRef.current.api.paginationSetPageSize(val);
+ gridRef.current.api.setGridOption("paginationPageSize", val);
setActivePage(0);
gridRef.current.api.paginationGoToPage(0);
if (isFullScreen) {
- gridRefFullScreen.current.api.paginationSetPageSize(val);
+ gridRefFullScreen.current.api.setGridOption("paginationPageSize", val);
gridRefFullScreen.current.api.paginationGoToPage(0);
}
},