Skip to content

Commit b3aab81

Browse files
jeclrsgGordonSmith
authored andcommitted
fix(comms): map Kind ints to strings in normalizeDetails
while looping through the properties of each scope, if the "Kind" property exists, assign the "Formatted" property the corresponding value from WUDetailsMetaResponse Signed-off-by: Jeremy Clements <[email protected]>
1 parent 5247e18 commit b3aab81

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/comms/src/ecl/workunit.ts

+4
Original file line numberDiff line numberDiff line change
@@ -685,6 +685,10 @@ export class Workunit extends StateObject<UWorkunitState, IWorkunitState> implem
685685
if (scopeProperty.Measure === "ns") {
686686
scopeProperty.Measure = "s";
687687
}
688+
if (scopeProperty.Name === "Kind") {
689+
const rawValue = parseInt(scopeProperty.RawValue, 10);
690+
scopeProperty.Formatted = meta.Activities.Activity.filter(a => a.Kind === rawValue)[0].Name ?? scopeProperty.RawValue;
691+
}
688692
columns[scopeProperty.Name] = { ...scopeProperty };
689693
safeDelete(columns, scopeProperty.Name, "RawValue");
690694
safeDelete(columns, scopeProperty.Name, "Formatted");

0 commit comments

Comments
 (0)