import { InlineField, InlineFieldRow, Select } from '@grafana/ui'; import React from 'react'; import { EditorProps } from '../QueryEditor'; const ERROR_OPTIONS = [ { label: 'Server panic', value: 'server_panic', }, { label: 'Frontend exception', value: 'frontend_exception', }, { label: 'Frontend observable', value: 'frontend_observable', }, ]; const FrontendErrorQueryEditor: React.FC = ({ query, onChange }) => { return (