Skip to content

Commit

Permalink
#2926 Fixed icons placement on data point list:
Browse files Browse the repository at this point in the history
- removed css class row in table pointList;
  • Loading branch information
Limraj committed Jul 7, 2024
1 parent d4468c7 commit fc0fb45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WebContent/WEB-INF/jsp/dataSourceEdit.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
rowCreator: function(options) {
var tr = document.createElement("tr");
tr.mangoId = "p"+ options.rowData.id;
tr.className = "row"+ (options.rowIndex % 2 == 0 ? "" : " rowAlt");
tr.className = (options.rowIndex % 2 == 0 ? "" : "rowAlt");
return tr;
},
cellCreator: function(options) {
Expand Down

0 comments on commit fc0fb45

Please sign in to comment.