EVOLUTION-MANAGER
Edit File: PromExploreExtraField.tsx
// Libraries import React, { memo } from 'react'; // Types import { FormLabel } from '@grafana/ui'; export interface PromExploreExtraFieldProps { label: string; onChangeFunc: (e: React.SyntheticEvent<HTMLInputElement>) => void; onKeyDownFunc: (e: React.KeyboardEvent<HTMLInputElement>) => void; value: string; hasTooltip?: boolean; tooltipContent?: string; } export function PromExploreExtraField(props: PromExploreExtraFieldProps) { const { label, onChangeFunc, onKeyDownFunc, value, hasTooltip, tooltipContent } = props; return ( <div className="gf-form-inline explore-input--ml"> <div className="gf-form"> <FormLabel width={5} tooltip={hasTooltip ? tooltipContent : null}> {label} </FormLabel> <input type={'text'} className="gf-form-input width-4" placeholder={'auto'} onChange={onChangeFunc} onKeyDown={onKeyDownFunc} value={value} /> </div> </div> ); } export default memo(PromExploreExtraField);