aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/components/property/error-event
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-workflow-designer-ui/src/app/components/property/error-event')
-rw-r--r--sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.html2
-rw-r--r--sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.html b/sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.html
index 45abdd0f..2384192e 100644
--- a/sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.html
+++ b/sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.html
@@ -12,4 +12,4 @@
*******************************************************************************/
-->
-<b4t-parameter [param]="node.parameter" [valueSource]="sources"></b4t-parameter> \ No newline at end of file
+<wfm-parameter [param]="node.parameter" [valueSource]="sources"></wfm-parameter> \ No newline at end of file
diff --git a/sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.ts b/sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.ts
index f8a63a15..ed11ba2d 100644
--- a/sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.ts
+++ b/sdc-workflow-designer-ui/src/app/components/property/error-event/error-event.component.ts
@@ -16,10 +16,10 @@ import { Parameter } from '../../../model/workflow/parameter';
import { ErrorEvent } from '../../../model/workflow/error-event';
@Component({
- selector: 'b4t-error-event',
+ selector: 'wfm-error-event',
templateUrl: 'error-event.component.html',
})
export class ErrorEventComponent {
@Input() public node: ErrorEvent;
- public sources: ValueSource[] = [ValueSource.String];
+ public sources: ValueSource[] = [ValueSource.string];
}