Skip to content

Commit 0a2e8a9

Browse files
committed
rollback reset buton fix to split PR
1 parent b4eef3e commit 0a2e8a9

File tree

2 files changed

+0
-5
lines changed
  • x-pack/plugins/security_solution

2 files changed

+0
-5
lines changed

x-pack/plugins/security_solution/common/types/timeline/store.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ export interface TimelinePersistInput {
4848
expandedDetail?: TimelineExpandedDetail;
4949
filters?: Filter[];
5050
columns: ColumnHeaderOptions[];
51-
defaultColumns?: ColumnHeaderOptions[];
5251
itemsPerPage?: number;
5352
indexNames: string[];
5453
kqlQuery?: {

x-pack/plugins/security_solution/public/common/components/events_viewer/index.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ type Props = OwnProps & PropsFromRedux;
7878
const StatefulEventsViewerComponent: React.FC<Props> = ({
7979
createTimeline,
8080
columns,
81-
defaultColumns,
8281
dataProviders,
8382
defaultCellActions,
8483
deletedEventIds,
@@ -128,7 +127,6 @@ const StatefulEventsViewerComponent: React.FC<Props> = ({
128127
createTimeline({
129128
id,
130129
columns,
131-
defaultColumns,
132130
excludedRowRendererIds,
133131
indexNames: selectedPatterns,
134132
sort,
@@ -243,7 +241,6 @@ const makeMapStateToProps = () => {
243241
const timeline: TimelineModel = getTimeline(state, id) ?? defaultModel;
244242
const {
245243
columns,
246-
defaultColumns,
247244
dataProviders,
248245
deletedEventIds,
249246
excludedRowRendererIds,
@@ -257,7 +254,6 @@ const makeMapStateToProps = () => {
257254

258255
return {
259256
columns,
260-
defaultColumns,
261257
dataProviders,
262258
deletedEventIds,
263259
excludedRowRendererIds,

0 commit comments

Comments
 (0)