File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ import {
99export class ExpandedRowHover {
1010 @HostListener ( "mouseenter" , [ "$event" ] )
1111 addHoverClass ( event ) {
12- event . target . previousElementSibling . classList . add ( "bx--expandable-row--hover-v2 " ) ;
12+ event . target . previousElementSibling . classList . add ( "bx--expandable-row--hover" ) ;
1313 }
1414
1515 @HostListener ( "mouseleave" , [ "$event" ] )
1616 removeHoverClass ( event ) {
17- event . target . previousElementSibling . classList . remove ( "bx--expandable-row--hover-v2 " ) ;
17+ event . target . previousElementSibling . classList . remove ( "bx--expandable-row--hover" ) ;
1818 }
1919}
Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ import { I18n } from "./../i18n/i18n.module";
179179 <thead>
180180 <tr>
181181 <th
182+ class="bx--table-expand"
182183 *ngIf="model.hasExpandableRows()"
183184 [ibmDataGridFocus]="isDataGrid"
184185 [(columnIndex)]="columnIndex"
@@ -358,7 +359,7 @@ import { I18n } from "./../i18n/i18n.module";
358359 class="bx--table-expand__button"
359360 [attr.aria-label]="expandButtonAriaLabel | async"
360361 (click)="model.expandRow(i, !model.rowsExpanded[i])">
361- <ibm-icon-chevron-right16 class ="bx--table-expand__svg"></ibm-icon-chevron-right16>
362+ <ibm-icon-chevron-right16 innerClass ="bx--table-expand__svg"></ibm-icon-chevron-right16>
362363 </button>
363364 </td>
364365 <td
You can’t perform that action at this time.
0 commit comments