Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 7 additions & 14 deletions binary/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 20 additions & 40 deletions core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 2 additions & 42 deletions extensions/vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gui/src/components/mainInput/ContinueInputBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function ContinueInputBox(props: ContinueInputBoxProps) {
className={`${props.hidden ? "hidden" : ""}`}
data-testid={`continue-input-box-${props.inputId}`}
>
<div className={`relative flex flex-col px-2`}>
<div className={`relative flex min-w-0 flex-col px-2`}>
{props.isMainInput && <Lump />}
<GradientBorder
loading={isStreaming && (props.isLastUserInput || isInEdit) ? 1 : 0}
Expand Down
5 changes: 5 additions & 0 deletions gui/src/components/mainInput/TipTapEditor/TipTapEditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
transition: background-color 0.2s ease-in-out;
}

.tiptap {
overflow-wrap: break-word;
word-break: break-word;
}

.tiptap p.is-editor-empty:first-child::before {
color: #646464; /* lightGray */
content: attr(data-placeholder);
Expand Down
Loading