Skip to content

Commit

Permalink
Fix code style issues with ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Mar 3, 2025
1 parent a98977c commit 14ebefe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/assets/js/kb-progress-bars.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@
},
initSingleBar(item) {
// Only select containers that have the init class
const barContainers = document.querySelectorAll('.kb-progress-bar-container' + item.unique_id + '.kb-progress-bar-init');
const barContainers = document.querySelectorAll(
'.kb-progress-bar-container' + item.unique_id + '.kb-progress-bar-init'
);
if (!barContainers?.length) {
return;
}
Expand Down

0 comments on commit 14ebefe

Please sign in to comment.