Change version to 1.3.0 for amber work
[portal/ric-dashboard.git] / webapp-frontend / src / app / ui / control-card / control-card.component.ts
index 04c4fb8..2db7ebb 100644 (file)
@@ -2,7 +2,7 @@
  * ========================LICENSE_START=================================
  * O-RAN-SC
  * %%
- * Copyright (C) 2019 AT&T Intellectual Property and Nokia
+ * Copyright (C) 2019 AT&T Intellectual Property
  * %%
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -22,15 +22,14 @@ import {Router} from '@angular/router';
 import {UiService} from '../../services/ui/ui.service';
 
 @Component({
-  selector: 'app-control-card',
+  selector: 'rd-control-card',
   templateUrl: './control-card.component.html',
-  styleUrls: ['./control-card.component.css']
+  styleUrls: ['./control-card.component.scss']
 })
 export class ControlCardComponent implements OnInit, OnDestroy {
   darkMode: boolean;
 
-  constructor(public router: Router, public ui: UiService) {
-  }
+  constructor(public router: Router, public ui: UiService) { }
 
   ngOnInit() {
     this.ui.darkModeState.subscribe((isDark) => {
@@ -38,9 +37,7 @@ export class ControlCardComponent implements OnInit, OnDestroy {
     });
   }
 
-  ngOnDestroy() {
-
-  }
+  ngOnDestroy() { }
 
   openDetails() {
     this.router.navigateByUrl('../../control');