Skip to content

Commit

Permalink
Fix #440 - include privacyPolicyUrl in edit modal
Browse files Browse the repository at this point in the history
  • Loading branch information
cbellone committed May 20, 2018
1 parent 10c9c63 commit e7e0533
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@
controller: function EditEventHeaderController($scope, $stateParams, LocationService, FileUploadService, UtilsService, EventService) {
if(!angular.isDefined($scope.fullEditMode)) {
var source = _.pick($scope.eventObj, ['id','shortName', 'displayName', 'organizationId', 'location',
'description', 'websiteUrl', 'externalUrl', 'termsAndConditionsUrl', 'imageUrl', 'fileBlobId', 'formattedBegin','type',
'description', 'websiteUrl', 'externalUrl', 'termsAndConditionsUrl', 'privacyPolicyUrl', 'imageUrl', 'fileBlobId', 'formattedBegin','type',
'formattedEnd', 'geolocation', 'locales']);
angular.extend($scope.obj, source);
var beginDateTime = moment(source['formattedBegin']);
Expand Down

0 comments on commit e7e0533

Please sign in to comment.