Fix getDataExplorer method
authorMichal Klobukowski <michal.klobukowski@contractors.roche.com>
Mon, 30 Jul 2018 09:04:45 +0000 (11:04 +0200)
committerMichal Klobukowski <michal.klobukowski@contractors.roche.com>
Mon, 30 Jul 2018 09:04:45 +0000 (11:04 +0200)
Feature #13887

Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski <michal.klobukowski@contractors.roche.com>

src/store/data-explorer/data-explorer-middleware-service.ts

index 18091f03e73d5f3959ba6854f68722caeb5735a3..fa856640c358d55d5622e5d0db86126d845d10c4 100644 (file)
@@ -25,6 +25,6 @@ export abstract class DataExplorerMiddlewareService {
         this.api = api;
     }
     getDataExplorer() {
-        return getDataExplorer(this.api.getState(), this.id);
+        return getDataExplorer(this.api.getState().dataExplorer, this.id);
     }
 }