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:09 UTC

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

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();
     }