system: make filesystem return value an array

Filesystem of df output is not unique
This commit is contained in:
Girish Ramakrishnan
2025-07-20 09:59:51 +02:00
parent 1e8df5c9d0
commit 66107cf7a4
3 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ onMounted(async () => {
const [error, result] = await systemModel.filesystems();
if (error) return console.error(error);
filesystems.value = Object.values(result);
filesystems.value = result;
ready.value = true;
});