Skip to content

Commit

Permalink
fix(table): solve mobileClass issue (#1153)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek authored Dec 17, 2024
1 parent 398c79b commit 226f19b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/oruga/src/components/table/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ function handleColumnDragLeave(
const rootClasses = defineClasses(
["rootClass", "o-table__root"],
["mobileClass", "o-table__root--mobile", null, isMobile],
["mobileClass", "o-table__root--mobile", null, isMobileActive],
);
const tableClasses = defineClasses(
Expand Down

0 comments on commit 226f19b

Please sign in to comment.