summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/dashboard-help/dashboard-help.component.html
blob: 274ec71df78b13619396d66bed0e186429008f4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div ngbDropdown
     placement="bottom-right">
  <a ngbDropdownToggle
     i18n-title
     title="Help">
    <i [ngClass]="[icons.questionCircle]"></i>
    <span i18n
          class="d-md-none">Help</span>
  </a>
  <div ngbDropdownMenu>
    <a ngbDropdownItem
       [ngClass]="{'disabled': !docsUrl}"
       class="text-capitalize"
       href="{{ docsUrl }}"
       target="_blank"
       i18n>documentation</a>
    <a ngbDropdownItem
       routerLink="/api-docs"
       target="_blank"
       i18n>API</a>
    <button ngbDropdownItem
            (click)="openAboutModal()"
            i18n>About</button>
  </div>
</div>