From 09f4e6785b2ce38da3b52003e9c9300cdd0feb85 Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Fri, 23 May 2025 20:33:35 +0200 Subject: [PATCH] fix(downloads): reordering columns in widget does not work (#3194) --- apps/nextjs/src/components/board/items/item-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/nextjs/src/components/board/items/item-content.tsx b/apps/nextjs/src/components/board/items/item-content.tsx index 9003bfacc..cb57fd463 100644 --- a/apps/nextjs/src/components/board/items/item-content.tsx +++ b/apps/nextjs/src/components/board/items/item-content.tsx @@ -125,8 +125,8 @@ const InnerContent = ({ item, ...dimensions }: InnerContentProps) => { setOptions={(partialNewOptions) => updateOptions({ newOptions: { - ...partialNewOptions.newOptions, ...options, + ...partialNewOptions.newOptions, }, }) }