Skip to content

Commit

Permalink
[ML] Fix types.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Jul 13, 2022
1 parent db7eb81 commit a46193b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ export const DocumentCountChart: FC<DocumentCountChartProps> = ({
defaultMessage: 'document count',
});

const viewMode = VIEW_MODE.BRUSH;
// TODO Let user choose between ZOOM and BRUSH mode.
const [viewMode] = useState<VIEW_MODE>(VIEW_MODE.BRUSH);

const xDomain = {
min: timeRangeEarliest,
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/aiops/public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ export function plugin() {
return new AiopsPlugin();
}

export type { ExplainLogRateSpikesProps } from './components/explain_log_rate_spikes';
export { ExplainLogRateSpikes } from './shared_lazy_components';
export type { AiopsPluginSetup, AiopsPluginStart } from './types';

0 comments on commit a46193b

Please sign in to comment.