Skip to content

Commit c1e1cb2

Browse files
j0weissPhilAlbrecht
authored andcommitted
Use correct font awsome icon syntax in context menu of timeseries chart (#166)
1 parent 60a5871 commit c1e1cb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

grails-app/assets/javascripts/charts/chartContextUtilities.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ $.contextMenu({
132132
},
133133
"deselectPoint": {
134134
name: chartContextMenuI18N.deselectPoint,
135-
icon: "fas fa-trash",
135+
icon: "fas fa-trash-alt",
136136
// show only if point is already selected
137137
visible: function () {
138138
return !OpenSpeedMonitor.chartContextUtil.isNotSelected(rickshawGraphBuilder.graph.nearestPoint);
@@ -165,7 +165,7 @@ $.contextMenu({
165165
},
166166
"deselectAllPoints": {
167167
name: chartContextMenuI18N.deselectAllPoints,
168-
icon: "fa-trash-o",
168+
icon: "fas fa-trash-alt",
169169
// show only if at least one point is already saved
170170
visible: function () {
171171
return rickshawGraphBuilder.graph.selectedPoints.length > 0;

0 commit comments

Comments
 (0)