You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When retrying a task from history, stale enum values (e.g. a removed
model) were sent directly to the server, causing a ValidationException.
The error was displayed as a generic unhelpful message.
This commit fixes four related issues:
- Fix typo in TaskTypeFields.vue that prevented optional enum fields
from ever receiving their dropdown options (e.g. model selection in
Advanced options was completely broken)
- Change "Try again" from history sidebar to load the task into the
form instead of auto-submitting, so the user can review and fix
stale values before resubmitting
- Add a watch in EnumField.vue that clears enum values not matching
any available option, preventing stale values from persisting in
the form state
- Show the server's actual validation error message in the toast
notification instead of a generic "Something went wrong" message
Closes#400
Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
0 commit comments