Skip to content

Commit

Permalink
feat(utils): Tweak the order of css classes for the new bttn
Browse files Browse the repository at this point in the history
This PR updates the order of the CSS classes for the new filter button, allowing us to hide it during printing.
  • Loading branch information
ERosendo committed Jan 25, 2024
1 parent 4c8bdb2 commit 72b2c7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,6 @@ function createRecapButtonForFilers(description) {
let button = document.createElement('input');
button.type = 'submit';
button.value = description;
button.classList.add('btn-primary', 'recap-bttn-for-filers');
button.classList.add('recap-bttn-for-filers', 'btn-primary');
return button
}

0 comments on commit 72b2c7d

Please sign in to comment.