fix(plugin-workflow): fix i18n (#354)
* fix(plugin-workflow): fix i18n * Update condition.tsx * fix(plugin-workflow): fix i18n Co-authored-by: chenos <chenlinxh@gmail.com>
This commit is contained in:
parent
a48d00492e
commit
1da9005ebf
@ -154,7 +154,7 @@ export default {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: false,
|
value: false,
|
||||||
label: i18n.t('Branch results')
|
label: i18n.t('Branch into "Yes" and "No"')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -170,8 +170,8 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
{ label: i18n.t('Reject on false'), key: 'rejectOnFalse', value: { rejectOnFalse: true } },
|
{ label: i18n.t('Continue when "Yes"'), key: 'rejectOnFalse', value: { rejectOnFalse: true } },
|
||||||
{ label: i18n.t('Branch results'), key: 'branch', value: { rejectOnFalse: false } }
|
{ label: i18n.t('Branch into "Yes" and "No"'), key: 'branch', value: { rejectOnFalse: false } }
|
||||||
],
|
],
|
||||||
render(data) {
|
render(data) {
|
||||||
const { id, config: { rejectOnFalse } } = data;
|
const { id, config: { rejectOnFalse } } = data;
|
||||||
|
Loading…
Reference in New Issue
Block a user