feat: redesign workflow and node modals with tabbed layouts and retry/resubmit UX - #259
Merged
RyanTheRobothead merged 10 commits intoMar 30, 2026
Merged
Conversation
…icators, and retry/resubmit UX
Workflow modal now has 3 tabs (Steps, Results, Details) with color-coded
step status indicators, per-step retry buttons, a retry dialog with step
selection, and a resubmit button that creates a new workflow from the same
definition. Node modal now has 3 tabs (Overview, Info, Actions) with
structured status cards and a JSON toggle for debugging.
Backend: new POST /workflow/{id}/resubmit endpoint and client method.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Coverage reportClick to see where and how coverage changed
This report was generated by python-coverage-comment-action |
||||||||||||||||||||||||||||||||||||||||||
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…tion handling Consolidate duplicate retry/resubmit API calls from WorkflowModal, RetryDialog, and ResubmitButton into a shared useWorkflowActions composable. Narrow the exception catch in resubmit_workflow from bare Exception to ValidationError so database/connection errors aren't masked as 404s. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The workcell engine's exception handler set step.result.status to FAILED but never updated step.status, leaving it as NOT_STARTED. The frontend's status resolution short-circuited on the truthy "not_started" string, hiding the failure. Fix both the backend (sync step.status) and frontend (prefer result status over not_started). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
6 tasks
RyanTheRobothead
deleted the
enhancement/dashboard-workflow-node-modal-ux
branch
April 9, 2026 19:47
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.
Summary
POST /workflow/{id}/resubmitendpoint andresubmit_workflow()client method.useDatapoints.ts.Test plan
yarn buildpasses (TypeScript compilation clean)ruff checkclean🤖 Generated with Claude Code