From addd09cc52edcfb470910373e553f04bb8e890a0 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 1 Apr 2025 15:56:56 +0700 Subject: [PATCH] QFIX: Fix list applications display (#8417) Signed-off-by: Andrey Sobolev --- plugins/view-resources/src/components/list/List.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/view-resources/src/components/list/List.svelte b/plugins/view-resources/src/components/list/List.svelte index 498f8fee9a..4b5a1a536b 100644 --- a/plugins/view-resources/src/components/list/List.svelte +++ b/plugins/view-resources/src/components/list/List.svelte @@ -72,7 +72,7 @@ $: configOptions = options $: resultOptions = { ...configOptions, - ...(Object.keys(lookup).length > 0 ? lookup : {}), + ...(Object.keys(lookup).length > 0 ? { lookup } : {}), ...(orderBy !== undefined ? { sort: { [orderBy[0]]: orderBy[1] } } : {}) }