From e4f61938406e27c3f855c77efbc3cb2dad3f78df Mon Sep 17 00:00:00 2001 From: _Kerman Date: Fri, 10 Nov 2023 17:44:46 +0800 Subject: [PATCH] fix: clone rotate prop to target --- packages/northstar/src/blocks/special/do.r.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/northstar/src/blocks/special/do.r.ts b/packages/northstar/src/blocks/special/do.r.ts index b0b6694..b3f80e6 100644 --- a/packages/northstar/src/blocks/special/do.r.ts +++ b/packages/northstar/src/blocks/special/do.r.ts @@ -21,6 +21,7 @@ export class DoBlock extends RectBlock { cloneTo(target: this): this { super.cloneTo(target); target.socketNum = this.socketNum; + target.rotate = this.rotate; return target; }