We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f703a13 + 8db8b05 commit e60760eCopy full SHA for e60760e
haxe/ui/containers/TableView.hx
@@ -1002,10 +1002,11 @@ private class RemoveColumn extends Behaviour {
1002
return null;
1003
}
1004
for (c in header.findComponents(Column)) {
1005
- if (c.id == null) {
+ final id = c.id;
1006
+ if (id == null) {
1007
continue;
1008
- if (c.text == param) {
1009
+ if (id == param) {
1010
header.removeComponent(c);
1011
break;
1012
0 commit comments