diff --git a/public/app/features/explore/Logs/Logs.tsx b/public/app/features/explore/Logs/Logs.tsx index 38b50850c06..74cb143ffef 100644 --- a/public/app/features/explore/Logs/Logs.tsx +++ b/public/app/features/explore/Logs/Logs.tsx @@ -538,7 +538,6 @@ class UnthemedLogs extends PureComponent { deduplicatedRows={dedupedRows} dedupStrategy={dedupStrategy} getRowContext={getRowContext} - getLogRowContextUi={getLogRowContextUi} onClickFilterLabel={onClickFilterLabel} onClickFilterOutLabel={onClickFilterOutLabel} showContextToggle={showContextToggle} diff --git a/public/app/features/logs/components/LogRow.tsx b/public/app/features/logs/components/LogRow.tsx index a63a73b03a4..0faafb44ee4 100644 --- a/public/app/features/logs/components/LogRow.tsx +++ b/public/app/features/logs/components/LogRow.tsx @@ -43,7 +43,6 @@ interface Props extends Themeable2 { onClickFilterOutLabel?: (key: string, value: string) => void; onContextClick?: () => void; getRowContext: (row: LogRowModel, options?: LogRowContextOptions) => Promise; - getLogRowContextUi?: (row: LogRowModel) => React.ReactNode; getFieldLinks?: (field: Field, rowIndex: number, dataFrame: DataFrame) => Array>; showContextToggle?: (row?: LogRowModel) => boolean; onClickShowField?: (key: string) => void; diff --git a/public/app/features/logs/components/LogRows.tsx b/public/app/features/logs/components/LogRows.tsx index dc71062d073..5b825671184 100644 --- a/public/app/features/logs/components/LogRows.tsx +++ b/public/app/features/logs/components/LogRows.tsx @@ -42,7 +42,6 @@ export interface Props extends Themeable2 { onClickFilterLabel?: (key: string, value: string) => void; onClickFilterOutLabel?: (key: string, value: string) => void; getRowContext?: (row: LogRowModel, options?: LogRowContextOptions) => Promise; - getLogRowContextUi?: (row: LogRowModel, runContextQuery?: () => void) => React.ReactNode; getFieldLinks?: (field: Field, rowIndex: number, dataFrame: DataFrame) => Array>; onClickShowField?: (key: string) => void; onClickHideField?: (key: string) => void; @@ -125,7 +124,6 @@ class UnThemedLogRows extends PureComponent { forceEscape, onLogRowHover, app, - getLogRowContextUi, } = this.props; const { renderAll } = this.state; const styles = getLogRowStyles(theme); @@ -154,7 +152,6 @@ class UnThemedLogRows extends PureComponent { key={row.uid} getRows={getRows} getRowContext={getRowContext} - getLogRowContextUi={getLogRowContextUi} row={row} showContextToggle={showContextToggle} showDuplicates={showDuplicates} @@ -185,7 +182,6 @@ class UnThemedLogRows extends PureComponent { key={row.uid} getRows={getRows} getRowContext={getRowContext} - getLogRowContextUi={getLogRowContextUi} row={row} showContextToggle={showContextToggle} showDuplicates={showDuplicates}