bfg-common 1.5.444 → 1.5.446

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.
@@ -96,9 +96,11 @@ const files = computed<UI_I_FileTreeNode[]>(() => {
96
96
  return files
97
97
 
98
98
  let type = 3
99
- if (selectedFileType.value === 'iso') type = 2
99
+ // if (selectedFileType.value === 'iso') type = 2
100
+ if (selectedFileType.value === 'iso') type = 6
100
101
 
101
- return files.filter((file) => file.provisioned_type === type)
102
+ // return files.filter((file) => file.provisioned_type === type)
103
+ return files.filter((file) => file.type === type) // mm [QA] Procurator
102
104
  })
103
105
 
104
106
  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.446",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",