File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed
perf/modules/anomalies-table-sk Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -74,18 +74,20 @@ export class AnomaliesTableSk extends ElementSk {
74
74
}
75
75
76
76
private static template = ( ele : AnomaliesTableSk ) => html `
77
- < button
78
- id ="triage-button "
79
- @click ="${ ele . togglePopup } "
80
- ?disabled ="${ ele . checkedAnomaliesSet . size === 0 } ">
81
- Triage
82
- </ button >
83
- < button
84
- id ="graph-button "
85
- @click ="${ ele . openReport } "
86
- ?disabled ="${ ele . checkedAnomaliesSet . size === 0 } ">
87
- Graph
88
- </ button >
77
+ < div class ="filter-buttons " ?hidden ="${ ele . anomalyList . length === 0 } ">
78
+ < button
79
+ id ="triage-button "
80
+ @click ="${ ele . togglePopup } "
81
+ ?disabled ="${ ele . checkedAnomaliesSet . size === 0 } ">
82
+ Triage
83
+ </ button >
84
+ < button
85
+ id ="graph-button "
86
+ @click ="${ ele . openReport } "
87
+ ?disabled ="${ ele . checkedAnomaliesSet . size === 0 } ">
88
+ Graph
89
+ </ button >
90
+ </ div >
89
91
< div class ="popup-container " ?hidden ="${ ! ele . showPopup } ">
90
92
< div class ="popup ">
91
93
< triage-menu-sk id ="triage-menu "> </ triage-menu-sk >
You can’t perform that action at this time.
0 commit comments