Skip to content

Commit

Permalink
PR feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkambic committed Oct 1, 2024
1 parent b89059c commit c9fa0da
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,17 @@
*/

import React, { ReactNode } from 'react';
import { EuiExpression, EuiPopover } from '@elastic/eui';
import { EuiExpression, EuiPopover, EuiExpressionProps } from '@elastic/eui';
import { ALL_VALUE } from '@kbn/slo-schema';
import { isEmpty } from 'lodash';
import { allOptionText } from './fields';
import { Suggestion } from '../hooks/use_fetch_synthetics_suggestions';

type ExpressionColor = 'subdued' | 'primary' | 'success' | 'accent' | 'warning' | 'danger';
interface Props {
title?: ReactNode;
value?: string[];
children?: ReactNode;
color?: ExpressionColor;
color?: EuiExpressionProps['color'];
selectedField?: string;
fieldName: string;
setSelectedField: (value?: string) => void;
Expand Down

0 comments on commit c9fa0da

Please sign in to comment.