-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathnote-dialog.component.html
35 lines (35 loc) · 1.05 KB
/
note-dialog.component.html
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
26
27
28
29
30
31
32
33
34
35
<ng-template #noteEditorTabsViewTemplate>
<div
class="MainNoteTabViewDialog"
sbbDialog
(mouseup)="onMouseUp($event)"
(mousemove)="onMouseMove($event)"
(mousedown)="onMouseDown($event)"
>
<sbb-icon
class="closeDialog"
svgIcon="cross-small"
aria-hidden="false"
(click)="closeDialog()"
></sbb-icon>
<div class="NoteTabGrupe">
<sbb-tab-group>
<sbb-tab [label]="'app.view.dialogs.note-dialog.note-tab' | translate" id="note-tab">
<sbb-note-edit-element
[noteDialogParameter]="data"
(noteDeleted)="closeDialog()"
></sbb-note-edit-element>
</sbb-tab>
<sbb-tab
[label]="'app.view.dialogs.note-dialog.filterable-labels-tab' | translate" id="note-filterable-labels-tab"
*ngIf="!disableBackend"
>
<sbb-note-filter-tab
[noteDialogParameter]="data"
(noteDeleted)="closeDialog()"
></sbb-note-filter-tab>
</sbb-tab>
</sbb-tab-group>
</div>
</div>
</ng-template>