You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by te...@apache.org on 2020/02/28 12:41:08 UTC

[incubator-streampipes] branch dev updated (af10fcb -> b293429)

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

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


    from af10fcb  Merge remote-tracking branch 'origin/dev' into dev
     new 3efb058  bug fix: copy and paste mistake
     new b293429  change icon because it was not shown

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../adapter-description/adapter-description.component.html              | 2 +-
 ui/src/app/dashboard-v2/components/widgets/base/base-ngx-line-config.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[incubator-streampipes] 02/02: change icon because it was not shown

Posted by te...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b29342962d929a274b7a19acae7d91ccf899bc87
Author: tex <te...@fzi.de>
AuthorDate: Fri Feb 28 13:40:23 2020 +0100

    change icon because it was not shown
---
 .../adapter-description/adapter-description.component.html              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/app/connect/data-marketplace/adapter-description/adapter-description.component.html b/ui/src/app/connect/data-marketplace/adapter-description/adapter-description.component.html
index bc05acb..f7fa368 100644
--- a/ui/src/app/connect/data-marketplace/adapter-description/adapter-description.component.html
+++ b/ui/src/app/connect/data-marketplace/adapter-description/adapter-description.component.html
@@ -40,7 +40,7 @@
         <div fxFlex="30" fxLayout="row" fxLayoutAlign="end end" *ngIf="isRunningAdapter" class="delete">
             <button id="{{ 'create-template-' + adapter.label.split(' ').join('_') }}" matTooltip="Create Adapter Template" color="secondary" class="edit" mat-fab (click)="createTemplate(adapter)">
                 <i class="material-icons">
-                   file_copy
+                    content_copy
                 </i>
             </button>
             <button id="{{ 'delete-' + adapterLabel }}" matTooltip="Delete Adapter" color="primary" mat-fab (click)="deleteAdapter(adapter)" [disabled]="deleteInProgress(adapter.couchDbId)">


[incubator-streampipes] 01/02: bug fix: copy and paste mistake

Posted by te...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3efb058fdf4bd7de395e22d46e0209a81094ddcb
Author: tex <te...@fzi.de>
AuthorDate: Fri Feb 28 13:14:46 2020 +0100

    bug fix: copy and paste mistake
---
 ui/src/app/dashboard-v2/components/widgets/base/base-ngx-line-config.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/app/dashboard-v2/components/widgets/base/base-ngx-line-config.ts b/ui/src/app/dashboard-v2/components/widgets/base/base-ngx-line-config.ts
index 143d4c1..343dc9d 100644
--- a/ui/src/app/dashboard-v2/components/widgets/base/base-ngx-line-config.ts
+++ b/ui/src/app/dashboard-v2/components/widgets/base/base-ngx-line-config.ts
@@ -37,7 +37,7 @@ export abstract class BaseNgxLineConfig extends WidgetConfig {
                 .requiredPropertyWithUnaryMapping(BaseNgxLineConfig.NUMBER_MAPPING_KEY, "Number field", "", EpRequirements.numberReq())
                 .build())
             .requiredIntegerParameter(BaseNgxLineConfig.MIN_Y_AXIS_KEY, "Y-axis range (min)", "")
-            .requiredIntegerParameter(BaseNgxLineConfig.MAX_Y_AXIS_KEY, "Y-axis range (min)", "")
+            .requiredIntegerParameter(BaseNgxLineConfig.MAX_Y_AXIS_KEY, "Y-axis range (max)", "")
             .build();
     }