You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2022/01/20 06:45:06 UTC

[incubator-streampipes] branch STREAMPIPES-507 updated: [STREAMPIPES-507] Minor fix

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

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


The following commit(s) were added to refs/heads/STREAMPIPES-507 by this push:
     new 262211a  [STREAMPIPES-507] Minor fix
262211a is described below

commit 262211a752563704cb9549f8a53f0627d2a09a87
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Thu Jan 20 07:43:45 2022 +0100

    [STREAMPIPES-507] Minor fix
---
 .../data-settings/data-explorer-widget-data-settings.component.html  | 5 +----
 .../data-settings/data-explorer-widget-data-settings.component.scss  | 3 +++
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ui/src/app/data-explorer/components/designer-panel/data-settings/data-explorer-widget-data-settings.component.html b/ui/src/app/data-explorer/components/designer-panel/data-settings/data-explorer-widget-data-settings.component.html
index 5bd01d7..e756744 100644
--- a/ui/src/app/data-explorer/components/designer-panel/data-settings/data-explorer-widget-data-settings.component.html
+++ b/ui/src/app/data-explorer/components/designer-panel/data-settings/data-explorer-widget-data-settings.component.html
@@ -27,7 +27,7 @@
                     </div>
                     <div fxFlex fxLayoutAlign="end center">
                         <button mat-button mat-icon-button color="accent">
-                            <i class="material-icons" (click)="cloneSourceConfig(i)">+</i>
+                            <i class="material-icons plus-icon" (click)="cloneSourceConfig(i)">+</i>
                         </button>
                         <button mat-button mat-icon-button color="accent">
                             <i class="material-icons" (click)="removeSourceConfig(i)">delete</i>
@@ -131,9 +131,6 @@
                     <sp-group-selection-panel [sourceConfig]="sourceConfig"
                                               [widgetId]="widgetId"></sp-group-selection-panel>
                 </div>
-                <div>
-
-                </div>
             </div>
         </mat-expansion-panel>
     </mat-accordion>
diff --git a/ui/src/app/data-explorer/components/designer-panel/data-settings/data-explorer-widget-data-settings.component.scss b/ui/src/app/data-explorer/components/designer-panel/data-settings/data-explorer-widget-data-settings.component.scss
index d188192..91e987c 100644
--- a/ui/src/app/data-explorer/components/designer-panel/data-settings/data-explorer-widget-data-settings.component.scss
+++ b/ui/src/app/data-explorer/components/designer-panel/data-settings/data-explorer-widget-data-settings.component.scss
@@ -61,6 +61,9 @@
   align-items: center;
 }
 
+.plus-icon {
+  vertical-align: text-bottom;
+}
 .data-source-selection-panel .mat-form-field + .mat-form-field {
   margin-left: 8px;
 }