1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

chore: Aggiunte classi mancanti

This commit is contained in:
Maicol Battistini
2021-11-23 21:30:03 +01:00
parent 820da90c9a
commit d500c750e1
3 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ export default class DataTable extends Component {
</tr>
</thead>
<tbody>
<tbody className="mdc-data-table__content">
{this.tableRows(vnode.children)}
</tbody>
@ -126,11 +126,11 @@ export default class DataTable extends Component {
}
showProgress() {
$(this.element).find('.mdc-data-table__progress-indicator mwc-linear-progress').get(0).open();
$(this.element).addClass('mdc-data-table--in-progress').find('.mdc-data-table__progress-indicator mwc-linear-progress').get(0).open();
}
hideProgress() {
$(this.element).find('.mdc-data-table__progress-indicator mwc-linear-progress').get(0).open();
$(this.element).removeClass('mdc-data-table--in-progress').find('.mdc-data-table__progress-indicator mwc-linear-progress').get(0).open();
}
onColumnClicked(event: Event) {