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/04/01 11:42:59 UTC

[incubator-streampipes] branch dev updated: [hotfix] Change styling for preview in pipeline editor

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

zehnder 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 9f6c8e7  [hotfix] Change styling for preview in pipeline editor
9f6c8e7 is described below

commit 9f6c8e7f5fff403ebc0d5099c32491c3cdb6070f
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Fri Apr 1 13:42:39 2022 +0200

    [hotfix] Change styling for preview in pipeline editor
---
 .../pipeline-element-preview.component.html                         | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ui/src/app/editor/components/pipeline-element-preview/pipeline-element-preview.component.html b/ui/src/app/editor/components/pipeline-element-preview/pipeline-element-preview.component.html
index 5ba91c5..a2cf510 100644
--- a/ui/src/app/editor/components/pipeline-element-preview/pipeline-element-preview.component.html
+++ b/ui/src/app/editor/components/pipeline-element-preview/pipeline-element-preview.component.html
@@ -21,11 +21,11 @@
         <mat-spinner [diameter]="20" color="accent"></mat-spinner>
         <span class="preview-table mt-10">Waiting for live data...</span>
     </div>
-    <table class="dataTable row-border hover preview-table" *ngIf="runtimeData">
+    <table class="row-border hover preview-table" *ngIf="runtimeData">
         <tbody id="preview-data-rows-id">
         <tr *ngFor="let item of runtimeData | keyvalue" class="preview-row">
-            <td>{{item.key}}</td>
-            <td><b>{{item.value}}</b></td>
+            <td><b>{{item.key}}</b></td>
+            <td>{{item.value}}</td>
         </tr>
         </tbody>
     </table>