Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

maryia/80871/fix: blank page caused by disallowed synthetics #7305

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/javascript/app/common/active_symbols.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const submarket_order = {
};

const ActiveSymbols = (() => {
const groupBy = (xs, key) => (
const groupBy = (xs = [], key) => (
xs.reduce((rv, x) => {
(rv[x[key]] = rv[x[key]] || []).push(x);
return rv;
Expand Down