| Index: dashboard/dashboard/elements/alerts-table.html
|
| diff --git a/dashboard/dashboard/elements/alerts-table.html b/dashboard/dashboard/elements/alerts-table.html
|
| index 7dcd99b7742c13ccb297b6b1d9713c92aac39d25..41d8a22f6181beab96e8132b1099dc89fcb086c1 100644
|
| --- a/dashboard/dashboard/elements/alerts-table.html
|
| +++ b/dashboard/dashboard/elements/alerts-table.html
|
| @@ -568,10 +568,13 @@ found in the LICENSE file.
|
| */
|
| addEllipsis: function() {
|
| for (var i = 0; i < this.alertList.length; i++) {
|
| + this.setAlertList(i, 'additionalColumnValues', {});
|
| + }
|
| +
|
| + for (var i = 0; i < this.alertList.length; i++) {
|
| var alert = this.alertList[i];
|
| if (alert.rowType == 'group-header' && alert.size > 1) {
|
| var headerRowIndex = i;
|
| - this.setAlertList(i, 'additionalColumnValues', {});
|
| for (var j = i + 1; j < this.alertList.length; j++) {
|
| var memberAlert = this.alertList[j];
|
| if (memberAlert.rowType == 'group-member') {
|
|
|