Skip to content
Snippets Groups Projects
Commit 3d36330a authored by Benoît Minisini's avatar Benoît Minisini :church:
Browse files

WebTable: Fix a javascript error when using single mode and radio buttons.

[GB.WEB.GUI]
* BUG: WebTable: Fix a javascript error when using single mode and radio buttons.
parent dfa1d4e9
No related branches found
No related tags found
No related merge requests found
Pipeline #793494342 passed
......@@ -1306,7 +1306,7 @@ gw = {
else
gw.table.checkRange(id, row, row, checked);
if (event.target == elt)
if (event && event.target == elt)
elt.checked = !checked;
$_(id).gw_current = row;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment