Hide timeline by default

Summary:
See the linked task. The QPL can literally freeze Flipper. Initial testing showed that the cause is primary the timeline view.

It was already suggested in the past to hide the timeline by default, as it is not that useful. So did.

Will try to unbreak the timeline in the future, but this at least unblocks the linked task.

Reviewed By: jknoxville

Differential Revision: D20538421

fbshipit-source-id: 8f5cd18c89322e94da5ab055e1913b6434eacf8a
This commit is contained in:
Michel Weststrate
2020-03-19 15:31:01 -07:00
committed by Facebook GitHub Bot
parent be5c76d27c
commit 676d7bbd24

View File

@@ -378,7 +378,7 @@ const Searchable = (
); );
if (filterIndex > -1) { if (filterIndex > -1) {
const filters = [...this.state.filters]; const filters = [...this.state.filters];
const defaultFilter: Filter = this.props.defaultFilters[filterIndex]; const defaultFilter: Filter = this.props.defaultFilters?.[filterIndex];
const filter = filters[filterIndex]; const filter = filters[filterIndex];
if ( if (
defaultFilter != null && defaultFilter != null &&