Skip to content

Commit

Permalink
Show data and signals by default
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook committed Sep 30, 2021
1 parent 54a81eb commit 141f293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/dataflow/utils/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const types = {
stream: {label: 'Streams', default: true},
update: {label: 'Updates', default: true},
operator: {label: 'Operators', default: true},
data: {label: 'Data', default: false},
signal: {label: 'Signals', default: false},
data: {label: 'Data', default: true},
signal: {label: 'Signals', default: true},
};

export type GraphType = keyof typeof types;
Expand Down

0 comments on commit 141f293

Please sign in to comment.