@d-mok/quasar-app-extension-quasar-axe 3.1.43 → 3.1.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-mok/quasar-app-extension-quasar-axe",
3
- "version": "3.1.43",
3
+ "version": "3.1.44",
4
4
  "description": "A Quasar App Extension",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -168,10 +168,10 @@ const TOTAL_WIDTH =
168
168
  .map(r => Object.mapValues(r, v => v.toString().length))
169
169
  .reduce((acc, obj) => {
170
170
  for (const key in acc) {
171
- acc[key] += obj[key]
171
+ acc[key] = Math.max(acc[key] ?? 0, obj[key] ?? 0)
172
172
  }
173
173
  return acc
174
174
  })
175
175
  ).sum() *
176
- 13
176
+ 20
177
177
  </script>