Reduce feedback form options and add ability to specify failing app

This commit is contained in:
Johannes Zellner
2018-03-05 12:54:09 +01:00
parent 451c697fb7
commit 2b6ce4f813
4 changed files with 20 additions and 12 deletions

View File

@@ -240,7 +240,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$loca
$scope.feedback.busy = true;
$scope.feedback.error = null;
Client.feedback($scope.feedback.type, $scope.feedback.subject, $scope.feedback.description, function (error) {
Client.feedback($scope.feedback.type, $scope.feedback.subject, $scope.feedback.description, null, function (error) {
$scope.feedback.busy = false;
if (error) {