mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[UX App] Fixes empty state (#138976)
This commit is contained in:
parent
3cc80ee4ec
commit
bf461a6868
1 changed files with 2 additions and 2 deletions
|
@ -35,11 +35,11 @@ export function useClientMetricsQuery() {
|
|||
);
|
||||
|
||||
const data = useMemo(() => {
|
||||
if (!esQueryResponse) return {};
|
||||
if (!esQueryResponse?.aggregations) return {};
|
||||
|
||||
const {
|
||||
hasFetchStartField: { backEnd, totalPageLoadDuration },
|
||||
} = esQueryResponse.aggregations!;
|
||||
} = esQueryResponse.aggregations;
|
||||
|
||||
const pkey = percentile.toFixed(1);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue