Skip to content

Commit 5823e6c

Browse files
committed
Fixed List View bug preventing drag/drop if signal or device name contained a space character.
1 parent 4c58e1f commit 5823e6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/SignalTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ class SignalTable {
735735
}
736736
}
737737
line += "<div id='viewSignalButton' class='viewButton'></div>";
738-
target.append("<tr class='"+devRowType+"' style='background: "+color+"44' id="+b.leaf.id+">"+line+"</tr>");
738+
target.append("<tr class='"+devRowType+"' style='background: "+color+"44' id='"+b.leaf.id+"'>"+line+"</tr>");
739739
tds = [[b.num_leaves - 1, i]];
740740
}
741741
add_tree(b, tds, target, depth + 1);

0 commit comments

Comments
 (0)