Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit 792edba

Browse files
committed
Fix invalid assignment of ContainerService scoped var.
The parent class was mistyped, this apparently only worked due to non-strict mode and/or dead code elimination.
1 parent a3a5fb7 commit 792edba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/components/container/container-service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,6 @@ explorer.components.container.ContainerService = class {
251251
delete this.explorerStateSvc.containers.all[targetContainer.model.id];
252252
}
253253
};
254-
const ContainerService = explorer.components.util.ContainerService;
254+
const ContainerService = explorer.components.container.ContainerService;
255255

256256
}); // goog.scope

0 commit comments

Comments
 (0)