summaryrefslogtreecommitdiffstats
path: root/public/src/app/home/home.component.ts
diff options
context:
space:
mode:
authorEran (ev672n), Vosk <ev672n@att.com>2018-10-29 19:33:00 +0200
committerEran (ev672n), Vosk <ev672n@att.com>2018-10-29 19:33:00 +0200
commit2dbff5ec1853f5f48354e0bbdecfae2d7489fbbb (patch)
tree932b4549f366400753354b7e5937f7ecae40511f /public/src/app/home/home.component.ts
parente0cf0c1c4a425816704a1e5b325fe7c8b9d2759a (diff)
Sync the code between repositories Change-Id: Ib7ee4d0e0f53b58a9bf97dadb15e094789b4f915 Issue-ID: SDC-1874 Signed-off-by: Eran (ev672n), Vosk <ev672n@att.com>
Diffstat (limited to 'public/src/app/home/home.component.ts')
-rw-r--r--public/src/app/home/home.component.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/public/src/app/home/home.component.ts b/public/src/app/home/home.component.ts
index ad970f6..ef29043 100644
--- a/public/src/app/home/home.component.ts
+++ b/public/src/app/home/home.component.ts
@@ -10,6 +10,7 @@ import { PluginPubSub } from 'sdc-pubsub';
import { Store } from '../store/store';
import { NgxDatatableModule } from '@swimlane/ngx-datatable';
import { environment } from '../../environments/environment';
+import { RuleEngineApiService } from '../rule-engine/api/rule-engine-api.service';
@Component({
selector: 'app-home',
@@ -33,6 +34,7 @@ export class HomeComponent {
private activeRoute: ActivatedRoute,
private route: Router,
private _restApi: RestApiService,
+ private _ruleApi: RuleEngineApiService,
private dialog: MatDialog,
public store: Store,
private toastr: ToastrService,
@@ -41,6 +43,8 @@ export class HomeComponent {
this.store.loader = true;
this.store.viewOnly = false;
this.store.mcName = '';
+ this._ruleApi.callUpdateTabIndex(-1);
+ this.store.setTabIndex(-1);
this.activeRoute.queryParams.subscribe(params => {
console.log('params: %o', params);
this.store.sdcParmas = params;
@@ -144,7 +148,6 @@ export class HomeComponent {
this.hoveredIndex = this.store.monitoringComponents.findIndex(
s => s === event.row
);
- console.log('selected : ');
}
revertMcDialog(item) {