mirror of
https://github.com/OpenNebula/one.git
synced 2024-12-25 23:21:29 +03:00
bug #3481: Use regex to filter user resources
(cherry picked from commit 7cc45141f6
)
This commit is contained in:
parent
1a5e777e16
commit
e67f67187c
@ -4310,7 +4310,7 @@ function setup_provision_vms_list(context, opts) {
|
||||
filter = $(this).val();
|
||||
}
|
||||
|
||||
provision_vms_datatable.fnFilter( filter, 2 );
|
||||
provision_vms_datatable.fnFilter("^" + filter + "$", 2, true, false);
|
||||
})
|
||||
|
||||
insertSelectOptions(
|
||||
@ -4467,7 +4467,7 @@ function setup_provision_templates_list(context, opts) {
|
||||
filter = $(this).val();
|
||||
}
|
||||
|
||||
provision_templates_datatable.fnFilter( filter, 3 );
|
||||
provision_templates_datatable.fnFilter("^" + filter + "$", 3, true, false);
|
||||
})
|
||||
|
||||
insertSelectOptions(
|
||||
@ -5186,7 +5186,7 @@ function setup_provision_flows_list(context, opts){
|
||||
filter = $(this).val();
|
||||
}
|
||||
|
||||
provision_flows_datatable.fnFilter( filter, 2 );
|
||||
provision_flows_datatable.fnFilter("^" + filter + "$", 2, true, false);
|
||||
})
|
||||
|
||||
insertSelectOptions(
|
||||
|
Loading…
Reference in New Issue
Block a user