Skip to content

Commit

Permalink
fix(ui): reword Workflow DELETED error (#10689)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
  • Loading branch information
jsoref committed Mar 19, 2023
1 parent 65887fc commit f62472a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -293,7 +293,7 @@ export const WorkflowDetails = ({history, location, match}: RouteComponentProps<
() => setError(null),
e => {
if (e.type === 'DELETED') {
setError(new Error('Workflow deleted'));
setError(new Error('Workflow gone'));
} else {
if (hasArtifactGCError(e.object.status.conditions)) {
setError(new Error('Artifact garbage collection failed'));
Expand Down

0 comments on commit f62472a

Please sign in to comment.