Start process: Make the title optional (#5580)

* Make the title optional

* Add the title on demoshell

* Remove the mat card and css

* Fix scss
This commit is contained in:
Maurizio Vitale
2020-03-31 09:38:55 +01:00
committed by GitHub
parent 01d0f777c0
commit f4f46d0c60
5 changed files with 24 additions and 19 deletions

View File

@@ -50,6 +50,9 @@ export class StartProcessInstanceComponent implements OnChanges, OnInit, OnDestr
@Input()
appId: number;
@Input()
title: string;
/** (optional) Definition name of the process to start. */
@Input()
processDefinitionName: string;