diff --git a/backend/windmill-worker/src/worker.rs b/backend/windmill-worker/src/worker.rs index 8207169016..d6bdc9b0be 100644 --- a/backend/windmill-worker/src/worker.rs +++ b/backend/windmill-worker/src/worker.rs @@ -2636,7 +2636,7 @@ pub async fn handle_queued_job( match job.kind { JobKind::Unassigned => { - return Err(Error::ExecutionError("Suspended job was not handled by the user within 30 days, job will not be executed.".to_string())); + return Err(Error::ExecutionErr("Suspended job was not handled by the user within 30 days, job will not be executed.".to_string())); } _ => {} } diff --git a/frontend/src/routes/(root)/(logged)/routes/+page.svelte b/frontend/src/routes/(root)/(logged)/routes/+page.svelte index c87d1861e1..7b1ae5b899 100644 --- a/frontend/src/routes/(root)/(logged)/routes/+page.svelte +++ b/frontend/src/routes/(root)/(logged)/routes/+page.svelte @@ -48,6 +48,7 @@ import { getHttpRoute } from '$lib/components/triggers/http/utils' import RoutesGenerator from '$lib/components/triggers/http/RoutesGenerator.svelte' import OpenApiSpecGenerator from '$lib/components/triggers/http/OpenAPISpecGenerator.svelte' + import Badge from '$lib/components/common/badge/Badge.svelte' type TriggerW = HttpTrigger & { canWrite: boolean } @@ -314,7 +315,7 @@