Skip to content

Commit

Permalink
Type fix for JS rule builder code.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Apr 7, 2018
1 parent b3f589c commit c520bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/rules/rule-definitions.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const RULES = {
let rownum = rule.start;
function newRow(row) {
const newRow = row.slice();
newRow.push(rownum);
newRow.push(String(rownum));
rownum += 1;
return newRow;
}
Expand Down

0 comments on commit c520bb4

Please sign in to comment.