mirror of https://github.com/rancher/api-ui.git
Remove byte order mark in file
This commit is contained in:
parent
36b3427b7a
commit
10faf0069c
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "gdapi-ui",
|
"name": "gdapi-ui",
|
||||||
"version": "1.2.6-dev",
|
"version": "1.2.6",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"gd-assets": "1.0.x"
|
"gd-assets": "1.0.x"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1459,7 +1459,7 @@ HTMLApi.prototype.getFormValues = function(mode, method, schema)
|
||||||
if ( v === this._magicNull )
|
if ( v === this._magicNull )
|
||||||
{
|
{
|
||||||
// Don't send nullable fields if null, unless the current value is not null
|
// Don't send nullable fields if null, unless the current value is not null
|
||||||
if ( field.nullable && !this._editData[k] )
|
if ( field.nullable && this._editData && !this._editData[k] )
|
||||||
continue;
|
continue;
|
||||||
else
|
else
|
||||||
v = null;
|
v = null;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/*!
|
/*!
|
||||||
* jQuery scrollintoview() plugin and :scrollable selector filter
|
* jQuery scrollintoview() plugin and :scrollable selector filter
|
||||||
*
|
*
|
||||||
* Version 1.8 (14 Jul 2011)
|
* Version 1.8 (14 Jul 2011)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue