Make app bug report the default, this is what mostly happens

This commit is contained in:
Johannes Zellner
2020-10-05 15:10:23 +02:00
parent 8e20db664f
commit 589f19f370

View File

@@ -16,7 +16,7 @@ angular.module('Application').controller('SupportController', ['$scope', '$locat
result: null,
busy: false,
subject: '',
type: 'ticket',
type: 'app_error',
description: '',
appId: '',
altEmail: ''
@@ -28,7 +28,7 @@ angular.module('Application').controller('SupportController', ['$scope', '$locat
function resetFeedback() {
$scope.feedback.subject = '';
$scope.feedback.description = '';
$scope.feedback.type = 'ticket';
$scope.feedback.type = 'app_error';
$scope.feedback.appId = '';
$scope.feedback.altEmail = '';