mirror of https://github.com/apache/cloudstack.git
bug 13356
Clear out sticky/custom data drop-down after adding policy status 13356: resolved fixed
This commit is contained in:
parent
b0b5a7a0d0
commit
59bd048b56
|
|
@ -710,6 +710,13 @@
|
|||
|
||||
// Clear out fields
|
||||
$multi.find('input').val('');
|
||||
$multi.find('tbody td').each(function() {
|
||||
var $item = $(this);
|
||||
|
||||
if ($item.data('multi-custom-data')) {
|
||||
$item.data('multi-custom-data', null);
|
||||
}
|
||||
});
|
||||
|
||||
// Apply action
|
||||
args.add.action({
|
||||
|
|
|
|||
Loading…
Reference in New Issue