aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2019-07-31 09:32:21 -0400
committerandrewdkim <adkim414@gmail.com>2019-07-31 09:32:21 -0400
commit59f3d2405870135314d00ea80acae0dc17b99955 (patch)
treeea84d205a7c1341f96298d3d9505b7a1bf65df1d /src
parentf495dacfbf3ebcda8a7bca1b58750a9ce5e9b88c (diff)
filter removed
Diffstat (limited to 'src')
-rw-r--r--src/client/views/nodes/Track.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/Track.tsx b/src/client/views/nodes/Track.tsx
index 2d6d3a5d8..b12dabadf 100644
--- a/src/client/views/nodes/Track.tsx
+++ b/src/client/views/nodes/Track.tsx
@@ -141,7 +141,7 @@ export class Track extends React.Component<IProps> {
@action
private filterKeys = (keys: string[]): string[] => {
return keys.reduce((acc: string[], key: string) => {
- if (key !== "regions" && key !== "data" && key !== "creationDate" && key !== "cursors" && key !== "hidden" && key !== "nativeHeight" && key !== "nativeWidth") acc.push(key);
+ if (key !== "regions" && key !== "data" && key !== "creationDate" && key !== "cursors" && key !== "hidden" && key !== "nativeHeight" && key !== "nativeWidth" && key !== "schemaColumns") acc.push(key);
return acc;
}, []) as string[];
}