Adds inline rename for pipelines and tasks#2150
Conversation
🎩 PreviewA preview build has been created at: |
9442648 to
4b08166
Compare
4b08166 to
b43b7db
Compare
| size="sm" | ||
| weight="semibold" | ||
| className="text-white truncate max-w-64 lg:max-w-md leading-tight ml-1" | ||
| <InlineStack |
There was a problem hiding this comment.
🤖 This is an AI-generated response.
Fixed — the rename button (raw <button>) had default browser padding which made the title row taller than just the text, throwing off vertical alignment. Added p-0 flex items-center to compact it down to the icon's natural size.
_________
Edit:
👨 This is a HUMAN-generated response.
I've converted button to the primitive.
b43b7db to
392d8b8
Compare
974a715 to
2e7e47b
Compare
392d8b8 to
e8ed98e
Compare
c6cf5b0 to
7b069e8
Compare
3b7778c to
1968ace
Compare
7b069e8 to
cb453a4
Compare
1968ace to
3b86ac3
Compare
cb453a4 to
6a6f4c7
Compare
3b86ac3 to
184387f
Compare
There was a problem hiding this comment.
I guess we could treat this as a separate, preexisting, bug:
I can rename a pipeline (pipeline -> pipeline2). The name & url are updated.
I can then undo. The name is updated (pipeline2 -> pipeline), but not the url.
Now, everywhere else I go (e.g. pipeline dashboard) the renamed name will show (pipeline 2). When I open the pipeline it takes me to the renamed url (/pipeline2) but with the undone name (pipeline).
If I then rename the pipeline again (-> pipeline3) the url is updated but not the name. In v1 editor the correct name is shown, but in v2 it still shows pipeline rather than pipeline3
In other words, undo-redo is causing sync/state issues with pipeline renaming.
6a6f4c7 to
f278ba1
Compare
184387f to
9bb57ed
Compare
8dc0276 to
9dc13a7
Compare
9bb57ed to
5900b84
Compare
|
Screen Recording 2026-04-30 at 2.21.51 PM.mov (uploaded via Graphite) ^ small UX note - "edit" is much less in width compared to the original title - maybe can be set to |
9dc13a7 to
b8d8d70
Compare
5900b84 to
9b621f3
Compare
b8d8d70 to
9df327b
Compare
9b621f3 to
a6bc1c0
Compare
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
a6bc1c0 to
fcfc5c0
Compare



Description
Adds inline rename functionality for both pipelines and tasks in the editor.
For pipelines, a pencil icon appears next to the pipeline name in the menu bar on hover. Clicking it opens a
PipelineNameDialogthat allows the user to rename the pipeline, update the file, and navigate to the new route.For tasks, a pencil icon appears next to the task name in the
TaskDetailspanel on hover. Clicking it replaces the name with an inlineInputfield. The rename is committed on blur or Enter, and cancelled on Escape.Related Issue and Pull requests
Resolves #31
Type of Change
Checklist
Screenshots (if applicable)
Test Instructions
Additional Comments