File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -232,14 +232,13 @@ export class SketchToolCardPatch extends SketchTailwindElement {
232232 render ( ) {
233233 const patchInput = JSON . parse ( this . toolCall ?. input ) ;
234234
235- const toolFailed = this . toolCall ?. result_message ?. tool_error ;
235+ const toolFailed = this . toolCall ?. result_message ?. tool_error ;
236236 const summaryContent = html `< span
237237 class ="text-gray-600 font-mono overflow-hidden text-ellipsis whitespace-nowrap rounded "
238238 >
239- ${ toolFailed
239+ ${ toolFailed
240240 ? `${ patchInput ?. path } : failed`
241- : `${ patchInput ?. path } : ${ patchInput . patches . length } edit${ patchInput . patches . length > 1 ? "s" : "" } `
242- }
241+ : `${ patchInput ?. path } : ${ patchInput . patches . length } edit${ patchInput . patches . length > 1 ? "s" : "" } ` }
243242 </ span > ` ;
244243
245244 const inputContent = html `` ;
You can’t perform that action at this time.
0 commit comments