Skip to content

Commit

Permalink
feat: change default panes for embed mode to query,preview (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
smeijer committed Oct 31, 2020
1 parent d5e3d81 commit f644db9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Embedded.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function Embedded(props) {
.split(',')
.map((x) => x.trim())
.filter((x) => SUPPORTED_PANES[x])
: ['markup', 'preview', 'query', 'result'];
: ['query', 'preview'];

// TODO: we should add tabs to handle > 2 panes
const areaCount = panes.length;
Expand Down

0 comments on commit f644db9

Please sign in to comment.