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/09/10 21:22:08 UTC

[incubator-streampipes] branch rel/0.67.0 updated: [hotfix] Fix bug in shepherd service, remove console output

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

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


The following commit(s) were added to refs/heads/rel/0.67.0 by this push:
     new 7a888b9  [hotfix] Fix bug in shepherd service, remove console output
7a888b9 is described below

commit 7a888b9f14b8791672cb385477214421fc93dc9c
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Tue Sep 8 12:47:31 2020 +0200

    [hotfix] Fix bug in shepherd service, remove console output
---
 .../pipeline-element-recommendation.component.ts                       | 3 ---
 ui/src/app/editor/services/pipeline-validation.service.ts              | 1 -
 ui/src/app/services/tour/shepherd.service.ts                           | 2 +-
 ui/src/scss/sp/pipeline-validation.scss                                | 3 ---
 4 files changed, 1 insertion(+), 8 deletions(-)

diff --git a/ui/src/app/editor/components/pipeline-element-recommendation/pipeline-element-recommendation.component.ts b/ui/src/app/editor/components/pipeline-element-recommendation/pipeline-element-recommendation.component.ts
index c682f24..2d6cf8a 100644
--- a/ui/src/app/editor/components/pipeline-element-recommendation/pipeline-element-recommendation.component.ts
+++ b/ui/src/app/editor/components/pipeline-element-recommendation/pipeline-element-recommendation.component.ts
@@ -146,9 +146,6 @@ export class PipelineElementRecommendationComponent implements OnInit {
 
   @Input()
   set recommendedElements(recommendedElements: any) {
-    console.log("set");
-    console.log(this.pipelineElementDomId);
-    console.log(recommendedElements);
     this.recommendationsPrepared = false;
     this.prepareStyles(recommendedElements);
     this._recommendedElements = recommendedElements;
diff --git a/ui/src/app/editor/services/pipeline-validation.service.ts b/ui/src/app/editor/services/pipeline-validation.service.ts
index a4d412d..53f7bb3 100644
--- a/ui/src/app/editor/services/pipeline-validation.service.ts
+++ b/ui/src/app/editor/services/pipeline-validation.service.ts
@@ -40,7 +40,6 @@ export class PipelineValidationService {
     }
 
     isValidPipeline(rawPipelineModel) {
-        console.log(rawPipelineModel);
         let streamInAssembly = this.isStreamInAssembly(rawPipelineModel);
         let sepaInAssembly = this.isSepaInAssembly(rawPipelineModel);
         let actionInAssembly = this.isActionInAssembly(rawPipelineModel);
diff --git a/ui/src/app/services/tour/shepherd.service.ts b/ui/src/app/services/tour/shepherd.service.ts
index a3f2cab..a653795 100644
--- a/ui/src/app/services/tour/shepherd.service.ts
+++ b/ui/src/app/services/tour/shepherd.service.ts
@@ -141,7 +141,7 @@ export class ShepherdService {
     }
 
     isTourActive() {
-        return Shepherd.activeTour !== undefined;
+        return Shepherd.activeTour;
     }
 
     hideCurrentStep() {
diff --git a/ui/src/scss/sp/pipeline-validation.scss b/ui/src/scss/sp/pipeline-validation.scss
index 04feb7c..ba6865e 100644
--- a/ui/src/scss/sp/pipeline-validation.scss
+++ b/ui/src/scss/sp/pipeline-validation.scss
@@ -24,9 +24,6 @@
   color: #5b5b5b;
   padding: 2px 5px;
   width:120px;
-  -moz-box-shadow:    inset 0 0 2px #5b5b5b;
-  -webkit-box-shadow: inset 0 0 2px #5b5b5b;
-  box-shadow:         inset 0 0 2px #5b5b5b;
 }
 
 .pipeline-validation-summary-error {