| 264 | } |
| 265 | |
| 266 | function formatRepoSetupInput(input: any) { |
| 267 | return ( |
| 268 | <div className="space-y-2"> |
| 269 | {input?.repoUrl && ( |
| 270 | <div className="flex items-start gap-2"> |
| 271 | <span className="text-sm text-gray-400 min-w-[120px]">Repository URL:</span> |
| 272 | <a |
| 273 | href={input.repoUrl} |
| 274 | target="_blank" |
| 275 | rel="noopener noreferrer" |
| 276 | className="text-sm text-blue-400 hover:text-blue-300 underline break-all" |
| 277 | > |
| 278 | {input.repoUrl} |
| 279 | </a> |
| 280 | </div> |
| 281 | )} |
| 282 | </div> |
| 283 | ); |
| 284 | } |
| 285 | |
| 286 | function formatRepoSetupOutput(output: any) { |
| 287 | return ( |