From 2bea689d2b63e40a1a8ec4305db5b508c70e7829 Mon Sep 17 00:00:00 2001 From: Xiao Gui <xgui3783@gmail.com> Date: Wed, 10 Oct 2018 16:24:34 +0200 Subject: [PATCH] chore: typos --- README.md | 2 +- src/ui/databrowser/databrowser.component.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d0b76d06a..d878c448c 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ The contents inside the folder in `./src/plugin_examples` will be automatically ## AOT compilation -Define `BUNDLEPLUGINS` as a comma separated environment variables to bundle the plugins. +Define `BUNDLEDPLUGINS` as a comma separated environment variables to bundle the plugins. ``` [BUNDLEDPLUGINS=pluginDir1[,pluginDir2...]] npm run build-aot diff --git a/src/ui/databrowser/databrowser.component.ts b/src/ui/databrowser/databrowser.component.ts index 9e73bca69..8713fd295 100644 --- a/src/ui/databrowser/databrowser.component.ts +++ b/src/ui/databrowser/databrowser.component.ts @@ -1,10 +1,10 @@ import { Component, OnDestroy, ComponentFactoryResolver, ComponentFactory, OnInit, Injector } from "@angular/core"; import { Store, select } from "@ngrx/store"; import { DataStateInterface, Property, safeFilter, DataEntry, File, SELECT_REGIONS, getLabelIndexMap, isDefined, SPATIAL_GOTO_PAGE, CHANGE_NAVIGATION, UPDATE_SPATIAL_DATA_VISIBLE, DESELECT_REGIONS, DESELECT_LANDMARKS, SELECT_LANDMARKS } from "../../services/stateStore.service"; -import { map, filter, take, distinctUntilChanged } from "rxjs/operators"; +import { map, filter, distinctUntilChanged } from "rxjs/operators"; import { HasPathProperty } from "../../util/pipes/pathToNestedChildren.pipe"; import { TreeComponent } from "../../components/tree/tree.component"; -import { Observable, Subscription, merge, combineLatest } from "rxjs"; +import { Observable, Subscription, combineLatest } from "rxjs"; import { FileViewer } from "../fileviewer/fileviewer.component"; import { WidgetServices } from "../../atlasViewer/widgetUnit/widgetService.service"; import { AtlasViewerConstantsServices } from "../../atlasViewer/atlasViewer.constantService.service"; -- GitLab