bfg-common 1.3.42 → 1.3.43

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.
@@ -547,6 +547,8 @@ const changeAll = (e: UI_I_HTMLSelectElement): void => {
547
547
  const newSelectedRow: (number | string)[] = []
548
548
  if (e.target.checked) {
549
549
  bodyItemsPresent.value.forEach((row) => {
550
+ if (row[0]?.disabled) return
551
+
550
552
  newSelectedRow.push(row[0].id)
551
553
  })
552
554
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.42",
4
+ "version": "1.3.43",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",