mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-02-08 06:44:09 +00:00
Actually fixes #433 - pulls dialog data from database (when available)
I wrote some tests in sartography-libs too
This commit is contained in:
parent
1db4c6c569
commit
ce2cd618ef
@ -91,7 +91,7 @@ export class WorkflowSpecDialogComponent {
|
|||||||
{
|
{
|
||||||
key: 'standalone',
|
key: 'standalone',
|
||||||
type: 'checkbox',
|
type: 'checkbox',
|
||||||
defaultValue: false,
|
defaultValue: this.data.standalone ? this.data.standalone : false,
|
||||||
templateOptions: {
|
templateOptions: {
|
||||||
label: 'Standalone',
|
label: 'Standalone',
|
||||||
description: 'Is this a standalone workflow?',
|
description: 'Is this a standalone workflow?',
|
||||||
@ -101,7 +101,7 @@ export class WorkflowSpecDialogComponent {
|
|||||||
{
|
{
|
||||||
key: 'library',
|
key: 'library',
|
||||||
type: 'checkbox',
|
type: 'checkbox',
|
||||||
defaultValue: false,
|
defaultValue: this.data.library ? this.data.library : false,
|
||||||
templateOptions: {
|
templateOptions: {
|
||||||
label: 'Library',
|
label: 'Library',
|
||||||
description: 'Is this a library workflow?',
|
description: 'Is this a library workflow?',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user