You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2020/08/25 15:03:04 UTC

[incubator-streampipes] branch dev updated: [hotfix] Fix bug in horizontal rendering of static property groups

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 746cbf8  [hotfix] Fix bug in horizontal rendering of static property groups
746cbf8 is described below

commit 746cbf8e31901882ddf692f5648ec8d089bf1e02
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Tue Aug 25 17:02:15 2020 +0200

    [hotfix] Fix bug in horizontal rendering of static property groups
---
 .../static-properties/static-group/static-group.component.html   | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/ui/src/app/core-ui/static-properties/static-group/static-group.component.html b/ui/src/app/core-ui/static-properties/static-group/static-group.component.html
index 32d30f6..18d7298 100644
--- a/ui/src/app/core-ui/static-properties/static-group/static-group.component.html
+++ b/ui/src/app/core-ui/static-properties/static-group/static-group.component.html
@@ -34,8 +34,13 @@
     <ng-container *ngFor="let property of staticProperty.staticProperties; let i = index">
         <span *ngIf="i > 0" style="margin-left: 10px;"></span>
         <app-static-property
-                [adapterId]="adapterId" [staticProperties]="staticProperties" [eventSchemas]="eventSchemas"
-                [staticProperty]="property" (validateEmitter)="valueChange($event)" class="test fullWidth">
+                [adapterId]="adapterId"
+                [parentForm]="parentForm"
+                [staticProperties]="staticProperties"
+                [fieldName]="property.internalName"
+                [eventSchemas]="eventSchemas"
+                [staticProperty]="property"
+                (validateEmitter)="valueChange($event)" class="test fullWidth">
         </app-static-property>
     </ng-container>