From 63cc0a6f917d6684cf0bbddea25df6ca0c08e03e Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Wed, 21 Jun 2023 20:42:29 +0000 Subject: [PATCH] chore: make getWorkspace public --- core/icons/mutator_icon.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/icons/mutator_icon.ts b/core/icons/mutator_icon.ts index 791fe487388..230a88c3c98 100644 --- a/core/icons/mutator_icon.ts +++ b/core/icons/mutator_icon.ts @@ -307,7 +307,10 @@ export class MutatorIcon extends Icon implements IHasBubble { eventUtils.setGroup(existingGroup); } - /** @internal */ + /** + * @returns The workspace of the mini workspace bubble, if the bubble is + * currently open. + */ getWorkspace(): WorkspaceSvg | undefined { return this.miniWorkspaceBubble?.getWorkspace(); }