fix(plugin-workflow): add default actions value of manual node (#1600)

This commit is contained in:
Junyi 2023-03-25 16:48:01 +07:00 committed by GitHub
parent d8e8f5ec45
commit 435eaee262
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,7 @@ import { NAMESPACE } from '../../locale';
import { SchemaConfig, SchemaConfigButton } from './SchemaConfig';
import { ModeConfig } from './ModeConfig';
import { AssigneesSelect } from './AssigneesSelect';
import { JOB_STATUS } from '../../constants';
const MULTIPLE_ASSIGNED_MODE = {
@ -72,6 +73,10 @@ export default {
},
}
},
actions: {
type: 'array',
default: [JOB_STATUS.RESOLVED]
}
},
view: {