File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
gui/src/components/StepContainer Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- import { ChevronDownIcon , ChevronUpIcon } from "@heroicons/react/24/solid" ;
21import { TrashIcon } from "@heroicons/react/24/outline" ;
2+ import { ChevronDownIcon , ChevronUpIcon } from "@heroicons/react/24/solid" ;
33import { ChatHistoryItem } from "core" ;
44import { useState } from "react" ;
5- import { AnimatedEllipsis } from "../AnimatedEllipsis" ;
65import { useAppSelector } from "../../redux/hooks" ;
7- import StyledMarkdownPreview from "../StyledMarkdownPreview" ;
86import { useDeleteCompaction } from "../../util/compactConversation" ;
7+ import { AnimatedEllipsis } from "../AnimatedEllipsis" ;
98import HeaderButtonWithToolTip from "../gui/HeaderButtonWithToolTip" ;
9+ import StyledMarkdownPreview from "../StyledMarkdownPreview" ;
1010
1111interface ConversationSummaryProps {
1212 item : ChatHistoryItem ;
1313 index : number ;
1414}
1515
1616export default function ConversationSummary ( props : ConversationSummaryProps ) {
17- const [ open , setOpen ] = useState ( false ) ;
17+ const [ open , setOpen ] = useState ( true ) ;
1818 const isLoading = useAppSelector (
1919 ( state ) => state . session . compactionLoading [ props . index ] || false ,
2020 ) ;
You can’t perform that action at this time.
0 commit comments