Skip to content

Commit

Permalink
Fixes #7243
Browse files Browse the repository at this point in the history
  • Loading branch information
novikov82 committed Oct 30, 2023
1 parent 6d1697a commit d6d366d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/question_matrixdropdownrendered.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ export class QuestionMatrixDropdownRenderedTable extends Base {
this.footerRow.cells.push(this.createHeaderCell(null));
}
if (this.hasActionCellInRows("start")) {
this.footerRow.cells.push(this.createHeaderCell(null));
this.footerRow.cells.push(this.createHeaderCell(null, "action"));
}
if (this.matrix.hasRowText) {
this.footerRow.cells.push(
Expand All @@ -471,7 +471,7 @@ export class QuestionMatrixDropdownRenderedTable extends Base {
}
}
if (this.hasActionCellInRows("end")) {
this.footerRow.cells.push(this.createHeaderCell(null));
this.footerRow.cells.push(this.createHeaderCell(null, "action"));
}
}
protected buildRows() {
Expand Down
2 changes: 1 addition & 1 deletion tests/markup/snapshots/matrixdynamic-totals.snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
<div>Count: 0</div>
</div>
</td>
<td class="sv_matrix_cell_header sv_matrix_cell--dropdown" colspan="1" data-responsive-title="" title="">
<td class="sv_matrix_cell_header sv_matrix_cell--action" colspan="1" data-responsive-title="" title="">
</td>
</tr>
</tfoot>
Expand Down

0 comments on commit d6d366d

Please sign in to comment.