|
@@ -1,13 +1,14 @@
|
|
|
import { Component, OnInit, QueryList, ViewChild, ViewChildren } from '@angular/core';
|
|
import { Component, OnInit, QueryList, ViewChild, ViewChildren } from '@angular/core';
|
|
|
import { faSave } from '@fortawesome/free-solid-svg-icons';
|
|
import { faSave } from '@fortawesome/free-solid-svg-icons';
|
|
|
-import { ServiceApiService } from '../../../services/service-api.service';
|
|
|
|
|
-import { ServerApiService } from '../../../services/server-api.service';
|
|
|
|
|
-import { ServiceCheckFormComponent } from '../../service-check-form/service-check-form.component';
|
|
|
|
|
|
|
+import { ServiceApiService } from '../../services/service-api.service';
|
|
|
|
|
+import { ServerApiService } from '../../services/server-api.service';
|
|
|
|
|
+import { ServiceCheckFormComponent } from '../../components/service-check-form/service-check-form.component';
|
|
|
|
|
|
|
|
@Component({
|
|
@Component({
|
|
|
selector: 'app-admin-panel',
|
|
selector: 'app-admin-panel',
|
|
|
templateUrl: './admin-panel.component.html',
|
|
templateUrl: './admin-panel.component.html',
|
|
|
- styleUrls: ['./admin-panel.component.scss']
|
|
|
|
|
|
|
+ styleUrls: ['./admin-panel.component.scss'],
|
|
|
|
|
+ host: { class: 'd-flex flex-column h-100 overflow-auto' }
|
|
|
})
|
|
})
|
|
|
export class AdminPanelComponent implements OnInit {
|
|
export class AdminPanelComponent implements OnInit {
|
|
|
@ViewChildren(ServiceCheckFormComponent) formChilds!: QueryList<ServiceCheckFormComponent>;
|
|
@ViewChildren(ServiceCheckFormComponent) formChilds!: QueryList<ServiceCheckFormComponent>;
|