@dhyasama/totem-models 6.11.11 → 6.11.12
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/lib/Organization.js +3 -3
- package/package.json +1 -1
- package/.npmignore +0 -14
- package/package-lock.json +0 -1829
package/lib/Organization.js
CHANGED
|
@@ -619,9 +619,9 @@ module.exports = function(mongoose, config) {
|
|
|
619
619
|
type: 'Reference',
|
|
620
620
|
key: 'referrer.person',
|
|
621
621
|
isStandard: true,
|
|
622
|
-
order: standardFields.
|
|
623
|
-
colspan: standardFields.
|
|
624
|
-
showOnFilter: standardFields.
|
|
622
|
+
order: standardFields.referrerPerson.order * 10,
|
|
623
|
+
colspan: standardFields.referrerPerson.colspan || 1,
|
|
624
|
+
showOnFilter: standardFields.referrerPerson.showOnFilter === true ? true : false
|
|
625
625
|
});
|
|
626
626
|
}
|
|
627
627
|
|
package/package.json
CHANGED