feat: make the close button as outline

This commit is contained in:
Li Xin 2025-04-25 12:02:07 +08:00
parent d68d3ee67a
commit ec52f49156

View File

@ -263,7 +263,10 @@ function MessageListItem({
<RollingText className="text-muted-foreground flex-grow text-sm">
{state}
</RollingText>
<Button onClick={handleOpen}>
<Button
variant={!openResearchId ? "default" : "outline"}
onClick={handleOpen}
>
{!openResearchId ? "Open" : "Close"}
</Button>
</div>