Spaces:
Running
Running
Update flare-ui/src/app/components/test/test.component.ts
Browse files
flare-ui/src/app/components/test/test.component.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
import { Component, inject, OnInit } from '@angular/core';
|
2 |
import { CommonModule } from '@angular/common';
|
3 |
import { FormsModule } from '@angular/forms';
|
4 |
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
@@ -12,6 +12,7 @@ import { MatCardModule } from '@angular/material/card';
|
|
12 |
import { ApiService } from '../../services/api.service';
|
13 |
import { AuthService } from '../../services/auth.service';
|
14 |
import { HttpClient } from '@angular/common/http';
|
|
|
15 |
|
16 |
interface TestResult {
|
17 |
name: string;
|
|
|
1 |
+
import { Component, inject, OnInit, OnDestroy } from '@angular/core';
|
2 |
import { CommonModule } from '@angular/common';
|
3 |
import { FormsModule } from '@angular/forms';
|
4 |
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
|
12 |
import { ApiService } from '../../services/api.service';
|
13 |
import { AuthService } from '../../services/auth.service';
|
14 |
import { HttpClient } from '@angular/common/http';
|
15 |
+
import { Subject, takeUntil } from 'rxjs';
|
16 |
|
17 |
interface TestResult {
|
18 |
name: string;
|