From a4ba65abf7569c4640f89a9ed733af338f4ced8b Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Wed, 21 Jun 2023 17:14:25 -0700 Subject: [PATCH] chore: make getWorkspace public (#7195) --- 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 d64836b58..eee9e585d 100644 --- a/core/icons/mutator_icon.ts +++ b/core/icons/mutator_icon.ts @@ -313,7 +313,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(); }