Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8f0ef58
v0.5.7: combobox selectors, usage indicator, workflow loading race co…
icecrasher321 Nov 18, 2025
31c34b2
v0.5.8: notifications, billing, ui changes, store loading state machine
icecrasher321 Nov 20, 2025
842ef27
v0.5.9: add backwards compatibility for agent messages array
waleedlatif1 Nov 20, 2025
b7e814b
v0.5.10: copilot upgrade, preprocessor, logs search, UI, code hygiene
waleedlatif1 Nov 21, 2025
ebcd243
v0.5.11: stt, videogen, vllm, billing fixes, new models
waleedlatif1 Nov 25, 2025
1d08796
v0.5.12: memory optimizations, sentry, incidentio, posthog, zendesk, …
waleedlatif1 Nov 29, 2025
8c32ad4
v0.5.13: polling fixes, generic agent search tool, status page, smtp,…
waleedlatif1 Dec 1, 2025
54cc937
v0.5.14: fix issue with teams, google selectors + cleanup code
icecrasher321 Dec 1, 2025
774e5d5
v0.5.15: add tools, revert subblock prop change
icecrasher321 Dec 1, 2025
e157ce5
v0.5.16: MCP fixes, code refactors, jira fixes, new mistral models
waleedlatif1 Dec 3, 2025
3187493
v0.5.17: modals, billing fixes, bun update, zoom, dropbox, kalshi, po…
waleedlatif1 Dec 4, 2025
6cd078b
v0.5.18: ui fixes, nextjs16, workspace notifications, admin APIs, loa…
icecrasher321 Dec 5, 2025
929a352
fix(build): added trigger.dev sdk mock to tests (#2216)
icecrasher321 Dec 5, 2025
12c4c2d
v0.5.19: copilot fix
icecrasher321 Dec 5, 2025
ebef5f3
v0.5.20: google slides, ui fixes, subflow resizing improvements
waleedlatif1 Dec 6, 2025
c27c233
v0.5.21: google groups, virtualized code viewer, ui, autolayout, docs…
waleedlatif1 Dec 8, 2025
d480057
fix(migration): migration got removed by force push (#2253)
icecrasher321 Dec 8, 2025
52edbea
v0.5.22: rss feed trigger, sftp tool, billing fixes, 413 surfacing, c…
waleedlatif1 Dec 9, 2025
4f18034
fix(ui): prevent form submission during IME composition steps
mosaxiv Dec 10, 2025
d067d24
chore(gitignore): add IntelliJ IDE files to .gitignore
mosaxiv Dec 10, 2025
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ start-collector.sh
# VSCode
.vscode

# IntelliJ
.idea

## Helm Chart Tests
helm/sim/test
i18n.cache
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ const UserInput = forwardRef<UserInputRef, UserInputProps>(
if (mentionKeyboard.handleArrowLeft(e)) return

// Enter key handling
if (e.key === 'Enter' && !e.shiftKey) {
if (e.key === 'Enter' && !e.shiftKey && !e.nativeEvent.isComposing) {
e.preventDefault()
if (!mentionMenu.showMentionMenu) {
handleSubmit()
Expand Down