diff options
| author | David Hill <[email protected]> | 2026-01-24 19:06:03 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-24 22:02:08 +0000 |
| commit | 02456376ce3d83f7fae7739a892bf1c4f5351bcb (patch) | |
| tree | 61167dfa9e0af39abe0f5dc720b5737dcaecd96f | |
| parent | faf2609bc5a12378135d2e0c504ea77dd6ab46dc (diff) | |
| download | opencode-02456376ce3d83f7fae7739a892bf1c4f5351bcb.tar.gz opencode-02456376ce3d83f7fae7739a892bf1c4f5351bcb.zip | |
fix(app): enable submit button when comment cards are present
| -rw-r--r-- | packages/app/src/components/prompt-input.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx index 3eddbb303..d25a61c32 100644 --- a/packages/app/src/components/prompt-input.tsx +++ b/packages/app/src/components/prompt-input.tsx @@ -2013,7 +2013,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => { > <IconButton type="submit" - disabled={!prompt.dirty() && !working()} + disabled={!prompt.dirty() && !working() && commentCount() === 0} icon={working() ? "stop" : "arrow-up"} variant="primary" class="h-6 w-4.5" |
