Commit 332c2508 authored by Sven Franck's avatar Sven Franck

app: fixed generation of images in listview

parent a439b2ae
...@@ -1709,9 +1709,9 @@ ...@@ -1709,9 +1709,9 @@
}); });
} }
if (element.left !== undefined) { if (element.left) {
// image // image
if (element.left.image !== undefined) { if (element.left.image) {
target.appendChild(factory.element({ target.appendChild(factory.element({
"type": "img", "type": "img",
"direct": {"src": element.left.image, "alt": (element.left.alt || "")} "direct": {"src": element.left.image, "alt": (element.left.alt || "")}
......
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