From d592994fc8616e22f60e3ce4255fa5c19fc93d5a Mon Sep 17 00:00:00 2001 From: joshuaboud Date: Wed, 25 May 2022 16:40:01 -0300 Subject: [PATCH] remove map to reactive objects --- navigator-vue/src/components/DirectoryEntryList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/navigator-vue/src/components/DirectoryEntryList.vue b/navigator-vue/src/components/DirectoryEntryList.vue index 673054b..b82b880 100644 --- a/navigator-vue/src/components/DirectoryEntryList.vue +++ b/navigator-vue/src/components/DirectoryEntryList.vue @@ -192,7 +192,7 @@ export default { cwd, (message) => notifications.value.constructNotification("Failed to parse file name", message, 'error') ) - ).map(entry => reactive(entry)); + ); procs.push(processLinks(tmpEntries.filter(entry => entry.type === 'symbolic link').map(entry => entry.target))); processingHandler.start(); return Promise.all(procs)