js part too
This commit is contained in:
parent
ff1ce07e26
commit
e03a313e77
1 changed files with 1 additions and 1 deletions
|
@ -525,7 +525,7 @@ pandora.ui.infoView = function(data) {
|
||||||
} else if (listKeys.indexOf(key) > -1) {
|
} else if (listKeys.indexOf(key) > -1) {
|
||||||
edit[key] = value ? value.split(', ') : [];
|
edit[key] = value ? value.split(', ') : [];
|
||||||
} else {
|
} else {
|
||||||
edit[key] = value;
|
edit[key] = value ? value : null;
|
||||||
}
|
}
|
||||||
pandora.api.edit(edit, function(result) {
|
pandora.api.edit(edit, function(result) {
|
||||||
data[key] = value;
|
data[key] = value;
|
||||||
|
|
Loading…
Reference in a new issue