Skip to content

Commit

Permalink
fix: Remove errant this.
Browse files Browse the repository at this point in the history
  • Loading branch information
gonfunko committed Sep 27, 2024
1 parent 147f7a6 commit 421e4c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/widgetdiv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export function hideIfOwner(oldOwner: unknown) {
* @param workspace The workspace that was using this container.
*/
export function hideIfOwnerIsInWorkspace(workspace: WorkspaceSvg) {
let ownerIsInWorkspace = this.ownerWorkspace === null;
let ownerIsInWorkspace = ownerWorkspace === null;
// Check if the given workspace is a parent workspace of the one containing
// our owner.
let currentWorkspace: WorkspaceSvg | null = workspace;
Expand Down

0 comments on commit 421e4c5

Please sign in to comment.