Skip to content
Snippets Groups Projects
Commit b1938d78 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Do not crash in getStatusIds when there is a gap in the timeline (fixes #7400) (#7415)

Fixes a crash occurring when the “gap” disconnection indicator is to be
displayed in a filtered timeline.
parent 993e68a7
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,8 @@ const makeGetStatusIds = () => createSelector([
}
return statusIds.filter(id => {
if (id === null) return true;
const statusForId = statuses.get(id);
let showStatus = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment