Skip to content

Commit

Permalink
Merge pull request #7023 from m-mohr/patch-1
Browse files Browse the repository at this point in the history
fix(b-table): b-table sticky header broken if sortable (fixes #6961)
  • Loading branch information
VividLemon committed Jan 3, 2023
2 parents c597779 + 3ccab69 commit 9e8dbbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/table/helpers/mixin-thead.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const theadMixin = extend({
{
// We need to make the header cell relative when we have
// a `.sr-only` sort label to work around overflow issues
'position-relative': sortLabel
'position-relative': sortLabel && !stickyColumn
},
this.fieldClasses(field),
sortClass
Expand Down

0 comments on commit 9e8dbbb

Please sign in to comment.