From e389011b48317558f92e3d69c108f970f7144608 Mon Sep 17 00:00:00 2001 From: Louis Date: Tue, 24 Jun 2025 14:50:40 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20add=20back=20a=20couple?= =?UTF-8?q?=20of=20major=20fixes=20(#5469)=20(#5470)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web-app/src/containers/ThreadList.tsx | 4 +- web-app/src/routes/settings/hardware.tsx | 56 +++++++++++++----------- 2 files changed, 31 insertions(+), 29 deletions(-) diff --git a/web-app/src/containers/ThreadList.tsx b/web-app/src/containers/ThreadList.tsx index df9689f16..e4ed8aa93 100644 --- a/web-app/src/containers/ThreadList.tsx +++ b/web-app/src/containers/ThreadList.tsx @@ -101,9 +101,7 @@ const SortableItem = memo(({ thread }: { thread: Thread }) => { )} >
- + {thread.title || t('common:newThread')}
- {hardwareData.gpus.length > 0 ? ( - - gpu.id)} - strategy={verticalListSortingStrategy} + {!IS_MACOS ? ( + + {hardwareData.gpus.length > 0 ? ( + - {hardwareData.gpus.map((gpu, index) => ( - - ))} - - - ) : ( - } - /> - )} - + gpu.id)} + strategy={verticalListSortingStrategy} + > + {hardwareData.gpus.map((gpu, index) => ( + + ))} + + + ) : ( + } + /> + )} + + ) : ( + <> + )}