Skip to content

Commit

Permalink
fix: [DHIS2-15500] use displayFormName instead of formName (#1818)
Browse files Browse the repository at this point in the history
  • Loading branch information
superskip authored Jun 28, 2023
1 parent c704653 commit 0b261b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -2144,7 +2144,7 @@ var trackerCaptureServices = angular.module('trackerCaptureServices', ['ngResour
angular.forEach(attributes, function(attr){
if(attr.displayInListNoProgram){
gridColumnIndex++;
var gridColumn = {id: attr.id, displayName: attr.displayName, formName: attr.formName, show: false, valueType: attr.valueType};
var gridColumn = {id: attr.id, displayName: attr.displayName, displayFormName: attr.displayFormName, show: false, valueType: attr.valueType};
setShowGridColumn(gridColumn,gridColumnIndex, config, savedGridColumnsKeyMap);
gridColumns.push(gridColumn);
}
Expand Down

0 comments on commit 0b261b1

Please sign in to comment.