bfg-common 1.5.43 → 1.5.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.
@@ -819,7 +819,7 @@ const bodyItemsPresent = computed<UI_I_BodyItem[][]>(() => {
819
819
  return {
820
820
  ...item,
821
821
  // Если текст пустой нужно поставить '--' для экспорта
822
- text: item.text || '--'
822
+ text: item.text !== '' ? item.text : '--'
823
823
  }
824
824
  })
825
825
  })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.43",
4
+ "version": "1.5.44",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",