mirror of https://github.com/apache/cloudstack.git
CS-16567: Fix context for quick view on add row
After adding a new instance row, in some cases the list view's context is not passed fully to the quickview, which broke certain sections. This ensures that the full context stored in the list widget is passed to the quickview.
This commit is contained in:
parent
61a6aada07
commit
72259693ac
|
|
@ -1050,7 +1050,7 @@
|
|||
var $listView = $tr.closest('.list-view');
|
||||
var $title = $('<div>').addClass('title');
|
||||
var $detailsContainer = $('<div>').addClass('container').appendTo($quickViewTooltip);
|
||||
var context = $.extend(true, {}, options.context);
|
||||
var context = $.extend(true, {}, $listView.data('view-args').context);
|
||||
var activeSection = $listView.data('view-args').activeSection;
|
||||
var itemID = $tr.data('list-view-item-id');
|
||||
var jsonObj = $tr.data('json-obj');
|
||||
|
|
|
|||
Loading…
Reference in New Issue