From 628f4cc90e63763cfcd5b901b0418b6a8e93e6af Mon Sep 17 00:00:00 2001 From: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com> Date: Mon, 14 Apr 2025 15:37:06 -0400 Subject: [PATCH] fix(comms): scopeProperty measure "skw" should be int in Workunit.normalizeDetails(), the raw value of scope properties of measure "skw" should be integers rather than strings Signed-off-by: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com> --- packages/comms/src/ecl/workunit.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/comms/src/ecl/workunit.ts b/packages/comms/src/ecl/workunit.ts index b7f99808b5..d725dce5b0 100644 --- a/packages/comms/src/ecl/workunit.ts +++ b/packages/comms/src/ecl/workunit.ts @@ -717,8 +717,10 @@ export class Workunit extends StateObject implem case "node": props[scopeProperty.Name] = +scopeProperty.RawValue; break; - case "cpu": case "skw": + props[scopeProperty.Name] = +scopeProperty.RawValue; + break; + case "cpu": case "ppm": case "ip": case "cy":