Repository: cloudstack Updated Branches: refs/heads/4.4 b9620c2cb -> 48a042b9c
CLOUDSTACK-6590: Fix view all link for multi-item detail view -- Specifically, this fixes issue where secondary IP 'view all' link was not displaying, due to a change in the rows' CSS naming conventions in the widget. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/48a042b9 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/48a042b9 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/48a042b9 Branch: refs/heads/4.4 Commit: 48a042b9c1b6859033122f32fd730ac593e3f605 Parents: b9620c2 Author: Brian Federle <[email protected]> Authored: Tue Aug 12 13:19:40 2014 -0700 Committer: Brian Federle <[email protected]> Committed: Thu Oct 30 13:15:30 2014 -0700 ---------------------------------------------------------------------- ui/scripts/ui/widgets/detailView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/48a042b9/ui/scripts/ui/widgets/detailView.js ---------------------------------------------------------------------- diff --git a/ui/scripts/ui/widgets/detailView.js b/ui/scripts/ui/widgets/detailView.js index c6cf1ca..118cf54 100644 --- a/ui/scripts/ui/widgets/detailView.js +++ b/ui/scripts/ui/widgets/detailView.js @@ -1231,7 +1231,7 @@ if (tabData.viewAll) { $fieldContent.find('tr') - .filter('.' + tabData.viewAll.attachTo).find('td.value') + .filter('.' + tabData.viewAll.attachTo + '-row').find('td.value') .append( $('<div>').addClass('view-all').append( $('<span>').html(
