Version 1.21.7
Released: 28 May 2024
Bug
TGNGAPP-2057 Inconsistency implementation of OptionObject between GUI interface and Java API/REST interface
TGNGAPP-2079 Problems with Java API default Script Update rows
TGNGAPP-2086 Dynamic Jira Field Option | Not Pulling in Data
TGNGAPP-2088 Bug after TGNG upgrade from v1.13.6
TGNGAPP-2110 Error uploading View Fields Grid config
TGNGAPP-2117 Behavior of the app after upgrading Jira Service Management version
TGNGAPP-2118 Error 500 While Fetching Grid Data
TGNGAPP-2126 Confusing error message content when importing a blank excel file
TGNGAPP-2130 Unknown rotation error when importing file with empty rows, and must have a formula column
TGNGAPP-2202 SyntaxError: "undefined" is not valid JSON
Related to TGNGAPP-2057 Inconsistency implementation of OptionObject between GUI interface and Java API/REST interface, we have removed the “optionObject” attribute when retrieving data by formula column:
With grid created from version 1.21.6 and earlier:
var result;
if($(OeNummer).hasOwnProperty('optionObject')){ // Checking if the value contain "optionObject"
result = $(OeNummer).optionObject.Name;
}else{
result = $(OeNummer).Name;
}
return result;
With grid created from version 1.21.7:
return $(OeNummer).Name