Skip to content

Commit

Permalink
Update bootstrap-table-sticky-header.js
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorTrutnev authored Nov 28, 2024
1 parent dc892a0 commit 0a45a06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extensions/sticky-header/bootstrap-table-sticky-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ $.BootstrapTable = class extends $.BootstrapTable {

this.$stickyHeader = this.$header.clone(true, true)

// copy header inputs value in $stickyHeader clone
// copy header inputs value in $stickyHeader clone
const $headerInputs = this.$header.find('select, input')
const _$stickyHeaderInputs = this.$stickyHeader.find('select, input')
const _$stickyHeaderInputs = this.$stickyHeader.find('select, input')
$headerInputs.each(function(i) {

Check failure on line 97 in src/extensions/sticky-header/bootstrap-table-sticky-header.js

View workflow job for this annotation

GitHub Actions / test

Expected blank line before this statement

Check failure on line 97 in src/extensions/sticky-header/bootstrap-table-sticky-header.js

View workflow job for this annotation

GitHub Actions / test

Missing space before function parentheses
const headerInputValue = $(this).val()
_$stickyHeaderInputs.eq(i).val(headerInputValue)

Check failure on line 99 in src/extensions/sticky-header/bootstrap-table-sticky-header.js

View workflow job for this annotation

GitHub Actions / test

Expected blank line before this statement
Expand Down

0 comments on commit 0a45a06

Please sign in to comment.