Skip to content

Commit

Permalink
rollback reset buton fix to split PR
Browse files Browse the repository at this point in the history
  • Loading branch information
semd committed Aug 31, 2021
1 parent b4eef3e commit 0a2e8a9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export interface TimelinePersistInput {
expandedDetail?: TimelineExpandedDetail;
filters?: Filter[];
columns: ColumnHeaderOptions[];
defaultColumns?: ColumnHeaderOptions[];
itemsPerPage?: number;
indexNames: string[];
kqlQuery?: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ type Props = OwnProps & PropsFromRedux;
const StatefulEventsViewerComponent: React.FC<Props> = ({
createTimeline,
columns,
defaultColumns,
dataProviders,
defaultCellActions,
deletedEventIds,
Expand Down Expand Up @@ -128,7 +127,6 @@ const StatefulEventsViewerComponent: React.FC<Props> = ({
createTimeline({
id,
columns,
defaultColumns,
excludedRowRendererIds,
indexNames: selectedPatterns,
sort,
Expand Down Expand Up @@ -243,7 +241,6 @@ const makeMapStateToProps = () => {
const timeline: TimelineModel = getTimeline(state, id) ?? defaultModel;
const {
columns,
defaultColumns,
dataProviders,
deletedEventIds,
excludedRowRendererIds,
Expand All @@ -257,7 +254,6 @@ const makeMapStateToProps = () => {

return {
columns,
defaultColumns,
dataProviders,
deletedEventIds,
excludedRowRendererIds,
Expand Down

0 comments on commit 0a2e8a9

Please sign in to comment.