File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
adev/src/app/editor/code-editor Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 22
22
(keydown) ="$event.stopPropagation() "
23
23
/>
24
24
</ form >
25
- } @else if(restrictedMode()) {
25
+ } @else if (restrictedMode()) {
26
26
{{ file.filename.replace('src/app/', '') }}
27
27
} @else {
28
28
{{ file.filename.replace('src/', '') }}
32
32
< button
33
33
class ="docs-rename-file "
34
34
aria-label ="rename file "
35
+ matTooltip ="Rename file "
36
+ matTooltipPosition ="above "
35
37
(click) ="onRenameButtonClick() "
36
38
>
37
39
< docs-icon > edit</ docs-icon >
41
43
< button
42
44
class ="docs-delete-file "
43
45
aria-label ="Delete file "
46
+ matTooltip ="Delete file "
47
+ matTooltipPosition ="above "
44
48
(click) ="deleteFile(file.filename) "
45
49
>
46
50
< docs-icon > delete</ docs-icon >
66
70
</ mat-tab-group >
67
71
68
72
@if (canCreateFile()) {
69
- < button class ="adev-add-file " (click) ="onAddButtonClick() " aria-label ="Add a new file ">
73
+ < button
74
+ class ="adev-add-file "
75
+ (click) ="onAddButtonClick() "
76
+ aria-label ="Add a new file "
77
+ matTooltip ="Add a new file "
78
+ matTooltipPosition ="above "
79
+ >
70
80
< docs-icon > add</ docs-icon >
71
81
</ button >
72
82
}
You can’t perform that action at this time.
0 commit comments