fix: have inputs construct connections (#7116)

* fix: have inputs construct connections

* chore: fix build hopefully

* fix: PR comments
This commit is contained in:
Beka Westberg
2023-05-24 13:50:06 -07:00
committed by GitHub
parent 42b8c6e3ab
commit 473a5ab7b1
6 changed files with 35 additions and 43 deletions

View File

@@ -18,6 +18,6 @@ export class DummyInput extends Input {
* @param block The block containing this input.
*/
constructor(public name: string, block: Block) {
super(name, block, null);
super(name, block);
}
}