fix(plugin-workflow): adjust executed alert position (#1381)
This commit is contained in:
parent
d4d8d747b8
commit
aaf6718755
@ -343,6 +343,21 @@ export function NodeDefaultView(props) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
properties: {
|
properties: {
|
||||||
|
...(workflow.executed ? {
|
||||||
|
alert: {
|
||||||
|
'x-component': Alert,
|
||||||
|
'x-component-props': {
|
||||||
|
type: 'warning',
|
||||||
|
showIcon: true,
|
||||||
|
message: `{{t("Node in executed workflow cannot be modified", { ns: "${NAMESPACE}" })}}`,
|
||||||
|
className: css`
|
||||||
|
width: 100%;
|
||||||
|
font-size: 85%;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
`
|
||||||
|
},
|
||||||
|
}
|
||||||
|
} : {}),
|
||||||
title: {
|
title: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
name: 'title',
|
name: 'title',
|
||||||
@ -368,25 +383,12 @@ export function NodeDefaultView(props) {
|
|||||||
},
|
},
|
||||||
properties: instruction.fieldset
|
properties: instruction.fieldset
|
||||||
},
|
},
|
||||||
actions: {
|
actions: workflow.executed
|
||||||
|
? null
|
||||||
|
: {
|
||||||
type: 'void',
|
type: 'void',
|
||||||
'x-component': 'Action.Drawer.Footer',
|
'x-component': 'Action.Drawer.Footer',
|
||||||
properties: workflow.executed
|
properties: {
|
||||||
? {
|
|
||||||
alert: {
|
|
||||||
'x-component': Alert,
|
|
||||||
'x-component-props': {
|
|
||||||
type: 'warning',
|
|
||||||
showIcon: true,
|
|
||||||
message: `{{t("Node in executed workflow cannot be modified", { ns: "${NAMESPACE}" })}}`,
|
|
||||||
className: css`
|
|
||||||
width: 100%;
|
|
||||||
font-size: 85%;
|
|
||||||
`
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
: {
|
|
||||||
cancel: {
|
cancel: {
|
||||||
title: '{{t("Cancel")}}',
|
title: '{{t("Cancel")}}',
|
||||||
'x-component': 'Action',
|
'x-component': 'Action',
|
||||||
|
@ -179,27 +179,31 @@ export const TriggerConfig = () => {
|
|||||||
}
|
}
|
||||||
`
|
`
|
||||||
},
|
},
|
||||||
properties: fieldset
|
properties: {
|
||||||
|
...(executed ? {
|
||||||
|
alert: {
|
||||||
|
'x-component': Alert,
|
||||||
|
'x-component-props': {
|
||||||
|
type: 'warning',
|
||||||
|
showIcon: true,
|
||||||
|
message: `{{t("Trigger in executed workflow cannot be modified", { ns: "${NAMESPACE}" })}}`,
|
||||||
|
className: css`
|
||||||
|
width: 100%;
|
||||||
|
font-size: 85%;
|
||||||
|
margin-bottom: 2em;
|
||||||
|
`
|
||||||
|
},
|
||||||
|
}
|
||||||
|
} : {}),
|
||||||
|
...fieldset
|
||||||
|
}
|
||||||
},
|
},
|
||||||
actions: {
|
actions: executed
|
||||||
|
? null
|
||||||
|
: {
|
||||||
type: 'void',
|
type: 'void',
|
||||||
'x-component': 'Action.Drawer.Footer',
|
'x-component': 'Action.Drawer.Footer',
|
||||||
properties: executed
|
properties: {
|
||||||
? {
|
|
||||||
alert: {
|
|
||||||
'x-component': Alert,
|
|
||||||
'x-component-props': {
|
|
||||||
type: 'warning',
|
|
||||||
showIcon: true,
|
|
||||||
message: `{{t("Trigger in executed workflow cannot be modified", { ns: "${NAMESPACE}" })}}`,
|
|
||||||
className: css`
|
|
||||||
width: 100%;
|
|
||||||
font-size: 85%;
|
|
||||||
`
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
: {
|
|
||||||
cancel: {
|
cancel: {
|
||||||
title: '{{t("Cancel")}}',
|
title: '{{t("Cancel")}}',
|
||||||
'x-component': 'Action',
|
'x-component': 'Action',
|
||||||
|
Loading…
Reference in New Issue
Block a user