Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
fixed event rule naming #14
Browse files Browse the repository at this point in the history
  • Loading branch information
Harald Meyer committed May 16, 2022
1 parent 7b6830e commit 0b75dfb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ax-ui-hubconnector/src/eventRules/eventRules-list.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1 class="icon c8y-icon c8y-icon-event-processing"></h1>
<thead>
<tr>
<th translate>{{'Name' | translate}}</th>
<th translate>{{'ADAMOS-Hub Event' | translate}}</th>
<th translate>{{'ADAMOS Hub Event' | translate}}</th>
<th translate>{{'ADAMOS Destination' | translate}}</th>
<th translate>{{'ADAMOS Processing' | translate}}</th>
<th translate style="width:2em;">{{'Move' | translate}}</th>
Expand Down Expand Up @@ -78,14 +78,14 @@ <h3>{{ 'Rule' | translate }}</h3>
</div>
<div class="row">
<div class="form-group">
<label>ADAMOS-Hub Event</label>
<input type="text" [(ngModel)]="selectedRule.eventTrigger.eventCode" placeholder="{{ 'ADAMOS-Hub Event Code or RegExp' | translate }}" class="form-control" />
<label>ADAMOS Hub Event</label>
<input type="text" [(ngModel)]="selectedRule.eventTrigger.eventCode" placeholder="{{ 'ADAMOS Hub Event Code or RegExp' | translate }}" class="form-control" />
</div>
</div>
<div class="row">
<div class="form-group">
<label translate>ADAMOS-Hub ObjectType</label>
<input type="text" [(ngModel)]="selectedRule.eventTrigger.referenceObjectType" placeholder="{{ 'ADAMOS-Hub Object Type or RegExp' | translate }}"class="form-control" />
<label translate>ADAMOS Hub ObjectType</label>
<input type="text" [(ngModel)]="selectedRule.eventTrigger.referenceObjectType" placeholder="{{ 'ADAMOS Hub Object Type or RegExp' | translate }}"class="form-control" />
</div>
</div>
<!-- <div class="row">
Expand Down Expand Up @@ -116,7 +116,7 @@ <h3>{{ 'Rule' | translate }}</h3>
</div> -->
<div class="row">
<div class="form-group" style="position: relative; z-index: 1000;">
<label translate>ADAMOS-Channel</label>
<label translate>Cumulocity Type</label>
<div class="c8y-select-wrapper">
<select class="form-control" [(ngModel)]="selectedRule.eventProcessor.channel">
<option value="EVENTS">{{ 'Events' | translate }}</option>
Expand All @@ -143,7 +143,7 @@ <h3>{{ 'Rule' | translate }}</h3>
</div> -->
<div class="row">
<div class="form-group" style="position: relative; z-index: 1000;">
<label translate>ADAMOS-Processing</label>
<label translate>Cumulocity Processing Mode</label>
<div class="c8y-select-wrapper">
<select class="form-control" [(ngModel)]="selectedRule.eventProcessor.processingMode">
<option value="PERSISTENT">{{ 'Persistent' | translate }}</option>
Expand All @@ -156,7 +156,7 @@ <h3>{{ 'Rule' | translate }}</h3>
</div>
<div class="row">
<div class="form-group" style="position: relative; z-index: 1000;">
<label translate>Custom-JSON</label>
<label translate>Custom JSON</label>
<textarea class="form-control" [(ngModel)]='selectedRule.output'></textarea>
</div>
</div>
Expand Down

0 comments on commit 0b75dfb

Please sign in to comment.