Assembly Version

WS Result bug fix and Nuget bump, PSN, Reactor and Extra RDS rule
OpenInsightApi and testRunTitle
serializerValue
This commit is contained in:
2023-03-07 11:48:46 -07:00
parent 6b760ed33f
commit d9f6ada5cb
12 changed files with 152 additions and 25 deletions

View File

@ -19,8 +19,8 @@ function getValue(value, length, product, recipe) {
return 'T-Mid';
else if (recipe.toUpperCase() === 'T_HIGH')
return 'T-High';
else if (length !== 0 || product === '-')
return value;
else
else if (length === 0)
return product;
else
return value;
}