chore: generate

This commit is contained in:
GitHub Action
2026-01-21 17:15:18 +00:00
committed by opencode
parent c4c489a5bc
commit 95b17bcf5e
5 changed files with 10 additions and 17 deletions

View File

@@ -77,9 +77,7 @@ export const DialogSelectMcp: Component = () => {
<span class="text-11-regular text-text-weaker">{language.t("mcp.status.disabled")}</span>
</Show>
<Show when={loading() === i.name}>
<span class="text-11-regular text-text-weak">
{language.t("common.loading.ellipsis")}
</span>
<span class="text-11-regular text-text-weak">{language.t("common.loading.ellipsis")}</span>
</Show>
</div>
<Show when={error()}>

View File

@@ -72,8 +72,7 @@ export const ModelTooltip: Component<{ model: ModelInfo; latest?: boolean; free?
? language.t("model.tooltip.reasoning.allowed")
: language.t("model.tooltip.reasoning.none")
}
const context = () =>
language.t("model.tooltip.context", { limit: props.model.limit.context.toLocaleString() })
const context = () => language.t("model.tooltip.context", { limit: props.model.limit.context.toLocaleString() })
return (
<div class="flex flex-col gap-1 py-1">

View File

@@ -1696,9 +1696,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
<Match when={working()}>
<div class="flex items-center gap-2">
<span>{language.t("prompt.action.stop")}</span>
<span class="text-icon-base text-12-medium text-[10px]!">
{language.t("common.key.esc")}
</span>
<span class="text-icon-base text-12-medium text-[10px]!">{language.t("common.key.esc")}</span>
</div>
</Match>
<Match when={true}>

View File

@@ -1573,12 +1573,12 @@ export default function Layout(props: ParentProps) {
keybind={command.keybind("session.archive")}
gutter={8}
>
<IconButton
icon="archive"
variant="ghost"
onClick={() => archiveSession(props.session)}
aria-label={language.t("command.session.archive")}
/>
<IconButton
icon="archive"
variant="ghost"
onClick={() => archiveSession(props.session)}
aria-label={language.t("command.session.archive")}
/>
</TooltipKeybind>
</div>
</div>

View File

@@ -2017,9 +2017,7 @@ export default function Page() {
style={{ color: "rgba(239, 68, 68, 0.8)" }}
/>
<div class="text-center" style={{ color: "rgba(255, 255, 255, 0.7)" }}>
<div class="text-14-semibold mb-1">
{language.t("terminal.connectionLost.title")}
</div>
<div class="text-14-semibold mb-1">{language.t("terminal.connectionLost.title")}</div>
<div class="text-12-regular" style={{ color: "rgba(255, 255, 255, 0.5)" }}>
{language.t("terminal.connectionLost.description")}
</div>