Merge branch 'release/1.3.5' into production
This commit is contained in:
commit
5c03bc8aef
|
@ -380,7 +380,7 @@ ModelBuilder.prototype.define = function defineClass(className, properties, sett
|
||||||
} else {
|
} else {
|
||||||
// Assume the type constructor handles Constructor() call
|
// Assume the type constructor handles Constructor() call
|
||||||
// If not, we should call new DataType(value).valueOf();
|
// If not, we should call new DataType(value).valueOf();
|
||||||
this.__data[propertyName] = DataType(value);
|
this.__data[propertyName] = (value instanceof DataType) ? value : DataType(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "loopback-datasource-juggler",
|
"name": "loopback-datasource-juggler",
|
||||||
"version": "1.3.4",
|
"version": "1.3.5",
|
||||||
"description": "LoopBack DataSoure Juggler",
|
"description": "LoopBack DataSoure Juggler",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"StrongLoop",
|
"StrongLoop",
|
||||||
|
|
Loading…
Reference in New Issue