Commit 7357eae5 authored by Sven Franck's avatar Sven Franck

fixed bug in listgrid resulting in undefined links in listitems

parent 1efd7e68
......@@ -713,8 +713,9 @@
}
// add record id for radio/check/linking
// TODO: develop a clean way to use _id and id. this is bad!
if (label) {
obj.id = items[i]["_id"] || null;
obj.id = item["id"] || items[i]["id"] || null;
}
// loop scheme sections
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment