|
@@ -1,5 +1,5 @@
|
|
|
import { Component } from '@angular/core';
|
|
|
-
|
|
|
+import { Router } from '@angular/router';
|
|
|
@Component({
|
|
|
selector: 'app-user-relationship',
|
|
|
templateUrl: './user-relationship.component.html',
|
|
@@ -10,6 +10,7 @@ export class UserRelationshipComponent {
|
|
|
|
|
|
constructor() {
|
|
|
this.previousUrl = window.location.href;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
redirectToExternalLink() {
|
|
@@ -18,5 +19,6 @@ export class UserRelationshipComponent {
|
|
|
|
|
|
goBack() {
|
|
|
window.history.back();
|
|
|
+
|
|
|
}
|
|
|
}
|