1 import { Component, OnInit } from '@angular/core';
3 import { Icons } from '~/app/shared/enum/icons.enum';
4 import { DocService } from '~/app/shared/services/doc.service';
6 import { AboutComponent } from '../about/about.component';
7 import { ModalCdsService } from '~/app/shared/services/modal-cds.service';
8 import { FeedbackComponent } from '~/app/ceph/shared/feedback/feedback.component';
11 selector: 'cd-dashboard-help',
12 templateUrl: './dashboard-help.component.html',
13 styleUrls: ['./dashboard-help.component.scss']
15 export class DashboardHelpComponent implements OnInit {
19 constructor(private docService: DocService, private modalCdsService: ModalCdsService) {}
22 this.docService.subscribeOnce('dashboard', (url: string) => {
28 this.modalCdsService.show(AboutComponent);
32 this.modalCdsService.show(FeedbackComponent);