Actually fixes #433 - pulls dialog data from database (when available)

I wrote some tests in sartography-libs too
This commit is contained in:
alicia pritchett 2021-08-25 15:46:45 -04:00
parent 1db4c6c569
commit ce2cd618ef

View File

@ -91,7 +91,7 @@ export class WorkflowSpecDialogComponent {
{
key: 'standalone',
type: 'checkbox',
defaultValue: false,
defaultValue: this.data.standalone ? this.data.standalone : false,
templateOptions: {
label: 'Standalone',
description: 'Is this a standalone workflow?',
@ -101,7 +101,7 @@ export class WorkflowSpecDialogComponent {
{
key: 'library',
type: 'checkbox',
defaultValue: false,
defaultValue: this.data.library ? this.data.library : false,
templateOptions: {
label: 'Library',
description: 'Is this a library workflow?',