Commit 948998aa authored by Gabriel Monnerat's avatar Gabriel Monnerat Committed by Jérome Perrin

officejs_support_request_ui: Select the first resource when there's only one

parent 68756dd7
...@@ -66,6 +66,9 @@ ...@@ -66,6 +66,9 @@
for (j = 0; j < sp_list.length; j += 1) { for (j = 0; j < sp_list.length; j += 1) {
sp_select.options[j] = new Option(sp_list[j][0], sp_list[j][1]); sp_select.options[j] = new Option(sp_list[j][0], sp_list[j][1]);
} }
if (sp_select.options.length === 2) {
sp_select.selectedIndex = 1;
}
}); });
}) })
.onEvent('change', function (evt) { .onEvent('change', function (evt) {
......
...@@ -264,7 +264,7 @@ ...@@ -264,7 +264,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1607511772.31</float> <float>1607511772.32</float>
<string>GMT+1</string> <string>GMT+1</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