Skip to content

Commit

Permalink
Update devDependencies and regenerate package-lock.json
Browse files Browse the repository at this point in the history
* @babel/preset-env       ^7.24.8  →   ^7.25.0
* eslint-plugin-unicorn   ^54.0.0  →   ^55.0.0
* hugo-bin               ^0.126.0  →  ^0.127.0
* postcss                 ^8.4.39  →   ^8.4.40
* rollup                  ^4.19.0  →   ^4.19.1
* rtlcss                   ^4.1.1  →    ^4.2.0
* stylelint               ^16.7.0  →   ^16.8.0
  • Loading branch information
XhmikosR committed Jul 29, 2024
1 parent c6d1d54 commit d37f829
Show file tree
Hide file tree
Showing 3 changed files with 1,377 additions and 513 deletions.
2 changes: 1 addition & 1 deletion js/src/dom/manipulator.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const Manipulator = {

for (const key of bsKeys) {
let pureKey = key.replace(/^bs/, '')
pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length)
pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1)
attributes[pureKey] = normalizeData(element.dataset[key])
}

Expand Down
Loading

0 comments on commit d37f829

Please sign in to comment.