owl-cli 6.95.0 → 6.97.0
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.
|
@@ -128,8 +128,9 @@ var @projectCodeService = (function (pigeon) {
|
|
|
128
128
|
|
|
129
129
|
var subData = curData[curKey]
|
|
130
130
|
if (!subData) {
|
|
131
|
-
curData[curKey] =
|
|
132
|
-
|
|
131
|
+
curData[curKey] = {}
|
|
132
|
+
subData = curData[curKey]
|
|
133
|
+
|
|
133
134
|
}
|
|
134
135
|
curData = subData
|
|
135
136
|
}
|
|
@@ -352,6 +353,9 @@ var @projectCodeService = (function (pigeon) {
|
|
|
352
353
|
}
|
|
353
354
|
switch (spec.fieldType) {
|
|
354
355
|
case 'string':
|
|
356
|
+
if(typeof value=='number'){
|
|
357
|
+
value = value + '';
|
|
358
|
+
}
|
|
355
359
|
return value + ''
|
|
356
360
|
case 'number':
|
|
357
361
|
if (isNaN(value)) {
|