mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-01-14 02:44:39 +00:00
Merge pull request #116 from sartography/chore/update-lock
Fixes a little console error bug.
This commit is contained in:
commit
556adbf4e3
@ -10,6 +10,8 @@ This project was generated with [Angular CLI](https://github.com/angular/angular
|
||||
|
||||
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
|
||||
|
||||
You can also user `npm run start:dev` to get a dev server with lazy loading. This makes development much more efficient
|
||||
|
||||
## Code scaffolding
|
||||
|
||||
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
||||
|
21400
package-lock.json
generated
21400
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -66,7 +66,7 @@
|
||||
"sartography-workflow-lib": "0.0.571",
|
||||
"tslib": "^2.3.0",
|
||||
"uuid": "^8.3.2",
|
||||
"zone.js": "^0.11.4"
|
||||
"zone.js": "~0.11.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-builders/custom-webpack": "^12.1.0",
|
||||
|
@ -127,12 +127,10 @@ export class WorkflowSpecListComponent implements OnInit {
|
||||
});
|
||||
|
||||
dialogRef.afterClosed().subscribe((data: WorkflowSpecDialogData) => {
|
||||
if (data.id) {
|
||||
data.id = this.toLowercaseId(data.id);
|
||||
if (data && data.id && data.display_name && data.description) {
|
||||
data.id = this.toLowercaseId(data.id);
|
||||
this._upsertWorkflowSpecification(selectedSpec == null, data);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user