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:41:44 -07:00
parent 4e80ef0fae
commit 03aabf9bac
12 changed files with 121 additions and 19 deletions

View File

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

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;
}