json-object-editor 0.10.110 → 0.10.120
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -1
- package/package.json +1 -1
- package/server/fields/core.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/server/fields/core.js
CHANGED
|
@@ -447,7 +447,7 @@ var fields = {
|
|
|
447
447
|
let schema = item.itemtype && _joe.schemas[item.itemtype];
|
|
448
448
|
let temp = `${(schema && schema.menuicon) || ''}
|
|
449
449
|
<joe-subtitle>${item.name}</joe-subtitle>
|
|
450
|
-
<joe-subtext>${item.info}</joe-subtext>`
|
|
450
|
+
<joe-subtext>${item.info||item.date||''}</joe-subtext>`
|
|
451
451
|
html += _joe.renderFieldListItem(item,temp,item.itemtype);
|
|
452
452
|
});
|
|
453
453
|
return html;
|