From 86d82e7712d26016e4decdcb59941357fdb6ce1e Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 16 Dec 2025 13:49:41 +0100 Subject: [PATCH] chore: fix location of created context fields Because we return the location of the created context fields, we need to also use the prefix for this. --- src/lib/features/context/context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/features/context/context.ts b/src/lib/features/context/context.ts index e2eaa44d2003..a8ed30bf4f0e 100644 --- a/src/lib/features/context/context.ts +++ b/src/lib/features/context/context.ts @@ -350,7 +350,7 @@ export class ContextController extends Controller { res, contextFieldSchema.$id, serializeDates(result), - { location: `context/${result.name}` }, + { location: `context/${result.name}` }, // todo: this will also be incorrect if it's project based (easy to fix) ); }