]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/app.component.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / app.component.ts
CommitLineData
494da23a 1import { Component } from '@angular/core';
11fdf7f2 2
f67539c2
TL
3import { NgbPopoverConfig, NgbTooltipConfig } from '@ng-bootstrap/ng-bootstrap';
4
11fdf7f2
TL
5@Component({
6 selector: 'cd-root',
7 templateUrl: './app.component.html',
9f95a23c 8 styleUrls: ['./app.component.scss']
11fdf7f2
TL
9})
10export class AppComponent {
f67539c2
TL
11 constructor(popoverConfig: NgbPopoverConfig, tooltipConfig: NgbTooltipConfig) {
12 popoverConfig.autoClose = 'outside';
13 popoverConfig.container = 'body';
14 popoverConfig.placement = 'bottom';
15
16 tooltipConfig.container = 'body';
17 }
11fdf7f2 18}