Skip to content

Commit

Permalink
Fixed List View bug preventing drag/drop if signal or device name con…
Browse files Browse the repository at this point in the history
…tained a space character.
  • Loading branch information
malloch committed May 8, 2024
1 parent 4c58e1f commit 5823e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/SignalTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ class SignalTable {
}
}
line += "<div id='viewSignalButton' class='viewButton'></div>";
target.append("<tr class='"+devRowType+"' style='background: "+color+"44' id="+b.leaf.id+">"+line+"</tr>");
target.append("<tr class='"+devRowType+"' style='background: "+color+"44' id='"+b.leaf.id+"'>"+line+"</tr>");
tds = [[b.num_leaves - 1, i]];
}
add_tree(b, tds, target, depth + 1);
Expand Down

0 comments on commit 5823e6c

Please sign in to comment.