From 8b5486abd8c28127a29c65d956f4176b2caa6b83 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Wed, 20 Dec 2023 21:39:07 +1300 Subject: [PATCH] Give the global dataspace actor a reasonable name --- packages/core/src/runtime/dataspace.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/runtime/dataspace.ts b/packages/core/src/runtime/dataspace.ts index f0c9556..a0805ca 100644 --- a/packages/core/src/runtime/dataspace.ts +++ b/packages/core/src/runtime/dataspace.ts @@ -51,6 +51,7 @@ export class Dataspace implements Partial { static get global(): Ref { if (Dataspace._global === void 0) { Dataspace.boot(ds => { + Turn.activeFacet.actor.name = Symbol.for('Dataspace.global'); // Cast to any because `global` is otherwise readonly (!) Dataspace._global = ds; });