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 2020/09/02 19:55:46 UTC

[incubator-streampipes] branch dev updated: Deactivated apps for release

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 68566cd  Deactivated apps for release
68566cd is described below

commit 68566cd248e797c0663c7810c3c68ecfd7d6870f
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Wed Sep 2 21:55:26 2020 +0200

    Deactivated apps for release
---
 ui/src/app/app-overview/app-overview.component.html |  8 ++++----
 ui/src/app/app-overview/app-overview.component.ts   | 21 +++++++++++----------
 2 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/ui/src/app/app-overview/app-overview.component.html b/ui/src/app/app-overview/app-overview.component.html
index 5c7c134..cd47b8a 100644
--- a/ui/src/app/app-overview/app-overview.component.html
+++ b/ui/src/app/app-overview/app-overview.component.html
@@ -49,8 +49,8 @@
     </div>
     <app-asset-monitoring (appOpened)="appOpened($event)"
                           *ngIf="currentlySelectedApp === apps[0].appId"></app-asset-monitoring>
-    <app-image-labeling (appOpened)="appOpened($event)"
-                          *ngIf="currentlySelectedApp === apps[1].appId"></app-image-labeling>
-    <app-new-app (appOpened)="appOpened($event)"
-                          *ngIf="currentlySelectedApp === apps[2].appId"></app-new-app>
+<!--    <app-image-labeling (appOpened)="appOpened($event)"-->
+<!--                          *ngIf="currentlySelectedApp === apps[1].appId"></app-image-labeling>-->
+<!--    <app-new-app (appOpened)="appOpened($event)"-->
+<!--                          *ngIf="currentlySelectedApp === apps[2].appId"></app-new-app>-->
 </div>
diff --git a/ui/src/app/app-overview/app-overview.component.ts b/ui/src/app/app-overview/app-overview.component.ts
index 65288ac..09e6318 100644
--- a/ui/src/app/app-overview/app-overview.component.ts
+++ b/ui/src/app/app-overview/app-overview.component.ts
@@ -33,17 +33,18 @@ export class AppOverviewComponent implements OnInit {
             appName: 'Asset Dashboards',
             appDescription: 'Monitor measurements of your assets by placing visualizations on an image of your asset.',
             appId: 'asset-monitoring',
-        },
-        {
-            appName: 'Image Labeling',
-            appDescription: 'Label in data lake stored images.',
-            appId: 'image-labeling',
-        },
-        {
-            appName: 'New App',
-            appDescription: 'An app that has some function',
-            appId: 'new-app',
         }
+        // ,
+        // {
+        //     appName: 'Image Labeling',
+        //     appDescription: 'Label in data lake stored images.',
+        //     appId: 'image-labeling',
+        // },
+        // {
+        //     appName: 'New App',
+        //     appDescription: 'An app that has some function',
+        //     appId: 'new-app',
+        // }
     ];
 
     constructor() {