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/03/03 21:52:33 UTC

[incubator-streampipes] branch dev updated: STREAMPIPES-87: Password field uses full width

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 c9b3d69  STREAMPIPES-87: Password field uses full width
c9b3d69 is described below

commit c9b3d69d0d87dd83bf8ff847c4450c9d80afaa81
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Tue Mar 3 22:52:17 2020 +0100

    STREAMPIPES-87: Password field uses full width
---
 .../static-secret-input/static-secret-input.component.html            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/src/app/connect/static-properties/static-secret-input/static-secret-input.component.html b/ui/src/app/connect/static-properties/static-secret-input/static-secret-input.component.html
index fa745ab..e9cd9cf 100644
--- a/ui/src/app/connect/static-properties/static-secret-input/static-secret-input.component.html
+++ b/ui/src/app/connect/static-properties/static-secret-input/static-secret-input.component.html
@@ -17,8 +17,8 @@
   -->
 
 <div id="formWrapper" fxFlex="100" fxLayout="column">
-    <div fxFlex fxLayout="row">
-        <form [formGroup]="secretForm">
+    <div fxFlex="100" fxLayout="row">
+        <form [formGroup]="secretForm" fxFlex="100">
             <mat-form-field fxFlex >
                 <input type="password" fxFlex id="{{ 'input-' + staticProperty.label.toLowerCase() }}" matInput [placeholder]="staticProperty.label" [(ngModel)]="staticPropertyUtil.asSecretStaticProperty(staticProperty).value"
                        formControlName="secretStaticProperty" (ngModelChange)="valueChange(staticPropertyUtil.asSecretStaticProperty(staticProperty).value)"