fixed CSV exporting bug by removing index column

This commit is contained in:
David Baldwynn 2017-10-02 11:44:04 -04:00
parent b4d0e8d4de
commit 5587c03065

View file

@ -183,7 +183,7 @@ angular.module('forms').directive('editSubmissionsFormDirective', ['$rootScope',
//Export selected submissions of Form
$scope.exportSubmissions = function(type){
angular.element('#table-submission-data').tableExport({type: type, escape:false});
angular.element('#table-submission-data').tableExport({type: type, escape:false, ignoreColumn: [0]});
};
}