mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
feat: add export option for workflows in AppMenu (#13309)
This commit is contained in:
parent
ccbc37d0b6
commit
27ba370d72
1 changed files with 5 additions and 0 deletions
|
|
@ -94,6 +94,11 @@ export const AppMenu = function AppMenu({
|
|||
<Field text={appType === 'module' ? 'Export module' : 'Export app'} onClick={exportApp} />
|
||||
</>
|
||||
)}
|
||||
{canUpdateApp && canCreateApp && appType === 'workflow' && (
|
||||
<>
|
||||
<Field text={'Export workflow'} onClick={exportApp} />
|
||||
</>
|
||||
)}
|
||||
{canDeleteApp && (
|
||||
<Field
|
||||
text={
|
||||
|
|
|
|||
Loading…
Reference in a new issue