Update start-form.component documentation (#5864)

* Update start-form.component.ts

* Update start-form.component.md
This commit is contained in:
Eugenio Romano
2020-07-13 15:33:01 +01:00
committed by GitHub
parent 42d88fdaa9
commit 1f58c2d64b
2 changed files with 4 additions and 4 deletions

View File

@@ -43,11 +43,11 @@ import { ProcessFormRenderingService } from './process-form-rendering.service';
})
export class StartFormComponent extends FormComponent implements OnChanges, OnInit, OnDestroy {
/** Definition ID of the process to start. */
/** Definition ID of the process to start, this parameter can not be use in combination with processId */
@Input()
processDefinitionId: string;
/** Process ID of the process to start. */
/** Process ID of the process to start, this parameter can not be use in combination with processDefinitionId */
@Input()
processId: string;