@dhyasama/totem-models 6.2.0 → 6.2.1
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/lib/Organization.js
CHANGED
|
@@ -250,10 +250,10 @@ module.exports = function(mongoose, config) {
|
|
|
250
250
|
order: { type: Number },
|
|
251
251
|
|
|
252
252
|
// Sets the number of columns for this property to span on the deals list
|
|
253
|
-
colspan:
|
|
253
|
+
colspan: { type: Number, default: 1 },
|
|
254
254
|
|
|
255
|
-
// Optionally include as an option on the deal
|
|
256
|
-
showOnFilter: {},
|
|
255
|
+
// Optionally include as an option on the deal
|
|
256
|
+
showOnFilter: { type: Boolean, default: true },
|
|
257
257
|
|
|
258
258
|
// Optionally show or hide fields on deals list
|
|
259
259
|
// Fields are always shown on org pages and in edit forms
|