feat(task): replace prompt/inline-edit rename with a modal#39
Draft
pnewsam wants to merge 1 commit into
Draft
Conversation
9effa7e to
85ee2df
Compare
torrmal
approved these changes
May 7, 2026
5 tasks
Introduce RenameTaskModal — a proper dialog with a text field, validation, and error display — to replace the browser window.prompt() in the sidebar and the inline header input in ChatView. - Add RenameTaskModal component (Modal + ModalHeader/Body/Footer shell) - Wire App.jsx: requestRenameTask / submitRenameTask drive the modal; handleRenameTask now also refreshes pins when the renamed task is pinned - Sidebar: call onRename(task.id) directly; modal owns the input - ChatView: remove titleEditing/titleHover state and inline <input>; simplify header title rendering; swap kebab for chevron icon Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
85ee2df to
4d1124b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR aligns the task rename UX with the Claude co-work UI design language — replacing the native browser
window.prompt()in the sidebar and the ad-hoc inline header<input>in ChatView with a purpose-built RenameTaskModal that matches the modal patterns used elsewhere in the co-work interface (sameModal/ModalHeader/ModalBody/ModalFootershell, same field styles, same button treatment).As a bonus,
handleRenameTaskin App.jsx now also updates the pin entry when a pinned task is renamed, keeping recents and pins in sync.Changes
RenameTaskModal.jsx(new) — modal with labelled text field, validation, error banner, and busy stateApp.jsx— addsrequestRenameTask/submitRenameTaskflow; mounts<RenameTaskModal>; fixes pin-sync on renameSidebar.jsx— removeswindow.prompt()call; delegates toonRename(task.id)ChatView.jsx— removestitleEditing/titleHoverstate and inline<input>; simplifies header title; swaps kebab for chevron icon; delegates rename toonRenameTask(task.id)Type of change
Checklist