Skip to content

Commit d9fcb87

Browse files
committed
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.
1 parent e356465 commit d9fcb87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/scripts/ui/widgets/detailView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@
12411241

12421242
if (tabData.viewAll) {
12431243
$fieldContent.find('tr')
1244-
.filter('.' + tabData.viewAll.attachTo).find('td.value')
1244+
.filter('.' + tabData.viewAll.attachTo + '-row').find('td.value')
12451245
.append(
12461246
$('<div>').addClass('view-all').append(
12471247
$('<span>').html(

0 commit comments

Comments
 (0)