mirror of https://github.com/apache/cloudstack.git
Detail view UI fix
Fix case where detail view data does not update, after async action
This commit is contained in:
parent
db610a7e7a
commit
6263ae9944
|
|
@ -162,7 +162,7 @@
|
|||
$loading.remove();
|
||||
|
||||
if (!noRefresh) {
|
||||
updateTabContent(args.data);
|
||||
updateTabContent(args.data? args.data : args2.data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -175,7 +175,7 @@
|
|||
$detailView: $detailView
|
||||
}));
|
||||
|
||||
replaceListViewItem($detailView, args.data);
|
||||
replaceListViewItem($detailView, args.data ? args.data : args2.data);
|
||||
},
|
||||
|
||||
{},
|
||||
|
|
|
|||
Loading…
Reference in New Issue