Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
stratoula committed Apr 14, 2022
1 parent ee7ba55 commit 406b900
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export interface Props {
onFiltersUpdated?: (filters: Filter[]) => void;
indexPatterns: DataView[];
intl: InjectedIntl;
appName: string;
timeRangeForSuggestionsOverride?: boolean;
}

Expand Down
2 changes: 0 additions & 2 deletions src/plugins/unified_search/public/filter_bar/filter_bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export interface Props {
className: string;
indexPatterns: DataView[];
intl: InjectedIntl;
appName: string;
timeRangeForSuggestionsOverride?: boolean;
}

Expand Down Expand Up @@ -49,7 +48,6 @@ const FilterBarUI = React.memo(function FilterBarUI(props: Props) {
filters={props.filters!}
onFiltersUpdated={props.onFiltersUpdated}
indexPatterns={props.indexPatterns!}
appName={props.appName}
timeRangeForSuggestionsOverride={props.timeRangeForSuggestionsOverride}
/>
</EuiFlexGroup>
Expand Down
2 changes: 0 additions & 2 deletions src/plugins/unified_search/public/search_bar/search_bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,6 @@ class SearchBarUI extends Component<SearchBarProps, State> {
filters={this.props.filters!}
onFiltersUpdated={this.props.onFiltersUpdated}
indexPatterns={this.props.indexPatterns!}
appName={this.services.appName}
timeRangeForSuggestionsOverride={timeRangeForSuggestionsOverride}
/>
) : undefined
Expand All @@ -470,7 +469,6 @@ class SearchBarUI extends Component<SearchBarProps, State> {
filters={this.props.filters!}
onFiltersUpdated={this.props.onFiltersUpdated}
indexPatterns={this.props.indexPatterns!}
appName={this.services.appName}
timeRangeForSuggestionsOverride={timeRangeForSuggestionsOverride}
/>
</div>
Expand Down

0 comments on commit 406b900

Please sign in to comment.