Commit 671ffbbf authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_jio: Fix parameter editor getContent

The value should not be skiped anymore.
parent dfaf572e
...@@ -920,15 +920,11 @@ ...@@ -920,15 +920,11 @@
.push(function (element) { .push(function (element) {
var text_content = element.querySelector('textarea[name=text_content]'); var text_content = element.querySelector('textarea[name=text_content]');
if (text_content !== null) { if (text_content !== null) {
return "SKIP"; return text_content.value;
} }
return gadget.processValidation(gadget.options.value.parameter.json_url); return gadget.processValidation(gadget.options.value.parameter.json_url);
}) })
.push(function (xml_result) { .push(function (xml_result) {
if (xml_result === "SKIP") {
/* The raw parameters are already on the request */
return {};
}
return {"text_content": xml_result}; return {"text_content": xml_result};
}) })
.fail(function (e) { .fail(function (e) {
......
...@@ -236,7 +236,7 @@ ...@@ -236,7 +236,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>964.9913.56931.4352</string> </value> <value> <string>965.35301.48944.13226</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -254,7 +254,7 @@ ...@@ -254,7 +254,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1513348581.62</float> <float>1518802908.99</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment