From a7d530518a3b6fa6a305493dc7e21595c896a1a7 Mon Sep 17 00:00:00 2001 From: undsoft Date: Tue, 14 Jan 2025 10:57:57 -0500 Subject: [PATCH] NAS-132372: Add /dev/zvol root for explorer --- src/app/services/filesystem.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/filesystem.service.ts b/src/app/services/filesystem.service.ts index 1cebefc2665..dce7176aeb3 100644 --- a/src/app/services/filesystem.service.ts +++ b/src/app/services/filesystem.service.ts @@ -65,7 +65,7 @@ export class FilesystemService { return this.ws.call( 'filesystem.listdir', - [node.data.path, typeFilter, { order_by: ['name'], limit: 1000 }], + [node.data.path, typeFilter, { order_by: ['name'], limit: 1000, select: ['name', 'type', 'attributes', 'path'] }], ).pipe( map((files) => { const children: ExplorerNodeData[] = [];