"...git@developer.sourcefind.cn:tsoc/superbenchmark.git" did not exist on "3c95714f9483f449b0d01b82c23fe890c397284f"
Commit 36d8442c authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: chat list time range

parent c0fbf1e7
...@@ -441,7 +441,7 @@ ...@@ -441,7 +441,7 @@
<div class="pl-2 my-2 flex-1 flex flex-col space-y-1 overflow-y-auto scrollbar-none"> <div class="pl-2 my-2 flex-1 flex flex-col space-y-1 overflow-y-auto scrollbar-none">
{#each filteredChatList as chat, idx} {#each filteredChatList as chat, idx}
{#if idx === 0 || (idx > 1 && chat.time_range !== filteredChatList[idx - 1].time_range)} {#if idx === 0 || (idx > 0 && chat.time_range !== filteredChatList[idx - 1].time_range)}
<div <div
class="w-full pl-2.5 text-xs text-gray-500 dark:text-gray-500 font-medium {idx === 0 class="w-full pl-2.5 text-xs text-gray-500 dark:text-gray-500 font-medium {idx === 0
? '' ? ''
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment