Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrtj committed Nov 26, 2024
1 parent 5094b7c commit 6596fce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type { LogRateAnalysisComponentApi, LogRateAnalysisEmbeddableState } from

type LogRateAnalysisEmbeddableCustomState = Omit<
LogRateAnalysisEmbeddableState,
'timeRange' | 'title' | 'description' | 'hidePanelTitles'
'timeRange' | 'title' | 'description' | 'hidePanelTitles' | 'windowParameters'
>;

export const initializeLogRateAnalysisControls = (rawState: LogRateAnalysisEmbeddableState) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@ export interface LogRateAnalysisEmbeddableInitialState
dataViewId?: string;
}

export type LogRateAnalysisEmbeddableRuntimeState = LogRateAnalysisEmbeddableState;
export type LogRateAnalysisEmbeddableRuntimeState = Omit<
LogRateAnalysisEmbeddableState,
'windowParameters'
>;

0 comments on commit 6596fce

Please sign in to comment.