Skip to content

Commit 8d1c8ae

Browse files
committed
fix: remove circular logic in constructor
1 parent a1e8432 commit 8d1c8ae

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/entity/mixins/runtime_items.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,6 @@ export const RuntimeItemsMixin = (superclass) => {
4747

4848
export const RuntimeItemsUILogicMixin = (superclass) => {
4949
return class extends RuntimeItemsMixin(superclass) {
50-
constructor(config) {
51-
super(config);
52-
this._initRuntimeItems(
53-
["results", "monitors", "preProcessors", "postProcessors"],
54-
config,
55-
);
56-
}
5750

5851
setRuntimeItemsToDefaultValues() {
5952
["results", "monitors", "preProcessors", "postProcessors"].map((name) =>

0 commit comments

Comments
 (0)