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 CHANGED
@@ -1,7 +1,8 @@
1
1
  ## CHANGELOG
2
- ### 0.10.110
2
+ ### 0.10.120
3
3
  100 - Added initiatives
4
4
  110 - capp updates for no user select
5
+ 120 - updated referencedBy template to include date or blank.
5
6
  Removed RTC fix, first clean build.
6
7
  ### 0.9.901
7
8
  Ledger Updates 2021 Q4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-object-editor",
3
- "version": "0.10.110",
3
+ "version": "0.10.120",
4
4
  "description": "JOE the Json Object Editor | Platform Edition",
5
5
  "main": "app.js",
6
6
  "scripts": {
@@ -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;