@dhyasama/totem-models 6.5.0 → 6.5.2
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 +5 -5
- package/package.json +1 -1
package/lib/Organization.js
CHANGED
|
@@ -259,7 +259,7 @@ module.exports = function(mongoose, config) {
|
|
|
259
259
|
// It must follow standard js variable naming rules
|
|
260
260
|
// Whenever possible, just use the label and replace spaces with underscore
|
|
261
261
|
// Will not be displayed
|
|
262
|
-
// Changing it after data is in the system will make data inaccessible
|
|
262
|
+
// Changing it after data is in the system will make data on deal inaccessible
|
|
263
263
|
key: { type: String, trim: true, required: true },
|
|
264
264
|
|
|
265
265
|
// User friendly text, will be displayed
|
|
@@ -526,13 +526,13 @@ module.exports = function(mongoose, config) {
|
|
|
526
526
|
if (standardFields.fundraise.showOnList) {
|
|
527
527
|
result.push({
|
|
528
528
|
name: 'Fundraise Amount',
|
|
529
|
-
type: '
|
|
529
|
+
type: 'Number',
|
|
530
530
|
order: standardFields.fundraise.order * 10,
|
|
531
531
|
colspan: standardFields.fundraise.colspan || 1,
|
|
532
532
|
showOnFilter: standardFields.fundraise.showOnFilter === true ? true : false
|
|
533
533
|
}, {
|
|
534
534
|
name: 'Fundraise Valuation',
|
|
535
|
-
type: '
|
|
535
|
+
type: 'Number',
|
|
536
536
|
order: standardFields.fundraise.order * 10 + 1,
|
|
537
537
|
colspan: standardFields.fundraise.colspan || 1,
|
|
538
538
|
showOnFilter: standardFields.fundraise.showOnFilter === true ? true : false
|
|
@@ -542,7 +542,7 @@ module.exports = function(mongoose, config) {
|
|
|
542
542
|
if (standardFields.sources.showOnList) {
|
|
543
543
|
result.push({
|
|
544
544
|
name: 'Source',
|
|
545
|
-
type: '
|
|
545
|
+
type: 'Reference',
|
|
546
546
|
order: standardFields.sources.order * 10,
|
|
547
547
|
colspan: standardFields.sources.colspan || 1,
|
|
548
548
|
showOnFilter: standardFields.sources.showOnFilter === true ? true : false
|
|
@@ -552,7 +552,7 @@ module.exports = function(mongoose, config) {
|
|
|
552
552
|
if (standardFields.referrers.showOnList) {
|
|
553
553
|
result.push({
|
|
554
554
|
name: 'Referrers',
|
|
555
|
-
type: '
|
|
555
|
+
type: 'Reference',
|
|
556
556
|
order: standardFields.referrers.order * 10,
|
|
557
557
|
colspan: standardFields.referrers.colspan || 1,
|
|
558
558
|
showOnFilter: standardFields.referrers.showOnFilter === true ? true : false
|