bfg-common 1.5.444 → 1.5.445

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.
@@ -98,7 +98,8 @@ const files = computed<UI_I_FileTreeNode[]>(() => {
98
98
  let type = 3
99
99
  if (selectedFileType.value === 'iso') type = 2
100
100
 
101
- return files.filter((file) => file.provisioned_type === type)
101
+ // return files.filter((file) => file.provisioned_type === type)
102
+ return files.filter((file) => file.type === type) // mm [QA] Procurator
102
103
  })
103
104
 
104
105
  const getRootNodeById = (id: string): UI_I_FileTreeNode | null => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.444",
4
+ "version": "1.5.445",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",