⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
explore
/
View File Name :
ResponseErrorContainer.tsx
import React from 'react'; import { LoadingState } from '@grafana/data'; import { useSelector } from 'app/types'; import { ErrorContainer } from './ErrorContainer'; interface Props { exploreId: string; } export function ResponseErrorContainer(props: Props) { const queryResponse = useSelector((state) => state.explore.panes[props.exploreId]!.queryResponse); const queryError = queryResponse?.state === LoadingState.Error ? queryResponse?.error : undefined; // Errors with ref ids are shown below the corresponding query if (queryError?.refId) { return null; } return
; }