mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-26 13:13:34 +00:00
chore: generate
This commit is contained in:
parent
dedb4133dc
commit
6f9a4e70da
2 changed files with 4 additions and 4 deletions
|
|
@ -1348,7 +1348,9 @@ body[data-new-layout] [data-component="user-message"] {
|
|||
[data-component="button-v2"] {
|
||||
font-family: var(--v2-font-family-sans, "Inter", sans-serif);
|
||||
font-weight: 530;
|
||||
font-variation-settings: "wght" 530, "slnt" 0;
|
||||
font-variation-settings:
|
||||
"wght" 530,
|
||||
"slnt" 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1176,9 +1176,7 @@ export function ContextToolGroup(props: {
|
|||
function UserMessageComments(props: { comments: UserMessageComment[]; bounded: boolean }) {
|
||||
const i18n = useI18n()
|
||||
const [state, setState] = createStore({ expanded: false })
|
||||
const comments = createMemo(() =>
|
||||
props.bounded && !state.expanded ? props.comments.slice(0, 5) : props.comments,
|
||||
)
|
||||
const comments = createMemo(() => (props.bounded && !state.expanded ? props.comments.slice(0, 5) : props.comments))
|
||||
|
||||
return (
|
||||
<div data-slot="user-message-comments" data-bounded={props.bounded ? "true" : undefined}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue