Skip to content

Commit

Permalink
chore: show workflow tab only at debug
Browse files Browse the repository at this point in the history
  • Loading branch information
islxyqwe committed Jun 19, 2024
1 parent 8654c71 commit 6b36537
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions packages/graphic-walker/src/components/codeExport/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,14 @@ const CodeExport: React.FC = observer((props) => {
key: 'vega-lite',
label: 'Vega-Lite',
},
{
key: 'workflow',
label: 'Workflow',
},
...(vizStore.layout.showActions
? [
{
key: 'workflow',
label: 'Workflow',
},
]
: []),
];

useEffect(() => {
Expand Down

0 comments on commit 6b36537

Please sign in to comment.