summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/booking/quick_deploy.html
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/templates/booking/quick_deploy.html')
-rw-r--r--dashboard/src/templates/booking/quick_deploy.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/dashboard/src/templates/booking/quick_deploy.html b/dashboard/src/templates/booking/quick_deploy.html
index ea80af4..07f3d89 100644
--- a/dashboard/src/templates/booking/quick_deploy.html
+++ b/dashboard/src/templates/booking/quick_deploy.html
@@ -83,7 +83,7 @@
function submit_form()
{
//formats data for form submission
- document.getElementById("filter_field").value = JSON.stringify(result);
+ multi_filter_widget.finish();
}
function hide_dropdown(drop_id) {
@@ -104,10 +104,8 @@
}
function get_selected_value(key){
- for( var attr in result[key] ){
- if( attr in {} )
- continue;
- else
+ for( var attr in multi_filter_widget.result[key] ){
+ if(!(attr in {}) )
return attr;
}
return null;