diff options
| author | Adam <[email protected]> | 2025-10-29 10:43:27 -0500 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-10-29 10:43:34 -0500 |
| commit | 244945c0e7ae515b965a575bd373ad81f9506c71 (patch) | |
| tree | 074fec92b9cc9430c2f659f07de9f9888da0c45f /packages/desktop/src/components | |
| parent | c652b2b4e803bb077835794355eea51c6663c0a3 (diff) | |
| download | opencode-244945c0e7ae515b965a575bd373ad81f9506c71.tar.gz opencode-244945c0e7ae515b965a575bd373ad81f9506c71.zip | |
fix: desktop error
Diffstat (limited to 'packages/desktop/src/components')
| -rw-r--r-- | packages/desktop/src/components/prompt-input.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/desktop/src/components/prompt-input.tsx b/packages/desktop/src/components/prompt-input.tsx index e6701bddc..d6276c158 100644 --- a/packages/desktop/src/components/prompt-input.tsx +++ b/packages/desktop/src/components/prompt-input.tsx @@ -393,9 +393,11 @@ export const PromptInput: Component<PromptInputProps> = (props) => { <img src={`https://models.dev/logos/${i.provider.id}.svg`} class="size-6 p-0.5 shrink-0 " /> <div class="flex gap-x-3 items-baseline flex-[1_0_0]"> <span class="text-14-medium text-text-strong overflow-hidden text-ellipsis">{i.name}</span> - <span class="text-12-medium text-text-weak overflow-hidden text-ellipsis truncate min-w-0"> - {DateTime.fromFormat(i.release_date, "yyyy-MM-dd").toFormat("LLL yyyy")} - </span> + <Show when={i.release_date}> + <span class="text-12-medium text-text-weak overflow-hidden text-ellipsis truncate min-w-0"> + {DateTime.fromFormat(i.release_date, "yyyy-MM-dd").toFormat("LLL yyyy")} + </span> + </Show> </div> </div> <Show when={!i.cost || i.cost?.input === 0}> |
