File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ export const PromptCardStatus = (props: {
140
140
Worked for{ ' ' }
141
141
{ ms (
142
142
new Date ( props . updatedAt ?? new Date ( ) ) . getTime ( ) -
143
- new Date ( props . startedAt ?? new Date ( ) ) . getTime ( ) ,
143
+ new Date ( props . startedAt ?? new Date ( ) ) . getTime ( ) ,
144
144
{ long : true }
145
145
) }
146
146
</ div >
@@ -151,7 +151,7 @@ export const PromptCardStatus = (props: {
151
151
{ props . status === 'failed'
152
152
? failed
153
153
: props . status === 'completed' &&
154
- props . onlyShowImmediateThought === true
154
+ props . onlyShowImmediateThought === true
155
155
? completed
156
156
: thinker }
157
157
</ div >
@@ -194,8 +194,8 @@ export const PromptCard = (props: PromptCardProps) => {
194
194
195
195
const cssPrompt =
196
196
props . status !== 'failed'
197
- ? 'break-all shadow-sm bg-2 text-default border b-4 rounded-t-md rounded-bl-md pl-4 pr-4 pt-2 pb-2'
198
- : 'break-all shadow-sm bg-2 text-2 border b-4 rounded-t-md rounded-bl-md pl-4 pr-4 pt-2 pb-2'
197
+ ? 'select-text break-all shadow-sm bg-2 text-default border b-4 rounded-t-md rounded-bl-md pl-4 pr-4 pt-2 pb-2'
198
+ : 'select-text break-all shadow-sm bg-2 text-2 border b-4 rounded-t-md rounded-bl-md pl-4 pr-4 pt-2 pb-2'
199
199
200
200
return (
201
201
< div className = { cssCard } >
You can’t perform that action at this time.
0 commit comments