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 => {
|