Skip to content

Commit

Permalink
fix(table): stickyHeaderClass should not display by default (#832)
Browse files Browse the repository at this point in the history
  • Loading branch information
whiplashwebb authored Mar 5, 2024
1 parent e50cc19 commit 09a45a1
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 @@ -219,7 +219,7 @@ const props = defineProps({
/** Add a horizontal scrollbar when table is too wide */
scrollable: { type: Boolean, default: undefined },
/** Show a sticky table header */
stickyHeader: { type: Boolean, default: undefined },
stickyHeader: { type: Boolean, default: false },
/** Table fixed height */
height: { type: [Number, String], default: undefined },
/** Add a native event to filter */
Expand Down

0 comments on commit 09a45a1

Please sign in to comment.