@steedos/standard-object-database 2.7.8-beta.1 → 2.7.8-beta.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.
|
@@ -278,9 +278,12 @@ module.exports = {
|
|
|
278
278
|
const groups = object.field_groups;
|
|
279
279
|
|
|
280
280
|
const getGroup = (groupName)=>{
|
|
281
|
+
if(groupName == 'undefined' || groupName == 'null'){
|
|
282
|
+
groupName = '';
|
|
283
|
+
}
|
|
281
284
|
return _.find(groups, (group)=>{
|
|
282
285
|
return group.group_name === groupName;
|
|
283
|
-
})
|
|
286
|
+
}) || {group_name: groupName}
|
|
284
287
|
}
|
|
285
288
|
|
|
286
289
|
const objectName = object.name;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/standard-object-database",
|
|
3
|
-
"version": "2.7.8-beta.
|
|
3
|
+
"version": "2.7.8-beta.2",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"description": "steedos package",
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@steedos-widgets/amis-lib": "^1.0.22",
|
|
15
|
-
"@steedos/metadata-core": "2.7.8-beta.
|
|
16
|
-
"@steedos/service-object-mixin": "2.7.8-beta.
|
|
17
|
-
"@steedos/standard-objects": "2.7.8-beta.
|
|
15
|
+
"@steedos/metadata-core": "2.7.8-beta.2",
|
|
16
|
+
"@steedos/service-object-mixin": "2.7.8-beta.2",
|
|
17
|
+
"@steedos/standard-objects": "2.7.8-beta.2",
|
|
18
18
|
"amis-formula": "~6.3.0",
|
|
19
19
|
"clone": "^2.1.2",
|
|
20
20
|
"moleculer-bullmq": "3.0.0"
|
|
21
21
|
},
|
|
22
22
|
"repository": {},
|
|
23
23
|
"license": "MIT",
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "d915768c87aaa7bc026623a4953d6f39c5ddace1"
|
|
25
25
|
}
|