diff --git a/dashboard/src/views/apps.html b/dashboard/src/views/apps.html
index b3553a149..a19266cd9 100644
--- a/dashboard/src/views/apps.html
+++ b/dashboard/src/views/apps.html
@@ -13,25 +13,21 @@
+
+
+
-
-
{{ 'app.appInfo.ssoEmail' | tr }}
-
{{ 'app.appInfo.sso' | tr }}
-
-
-
diff --git a/dashboard/src/views/apps.js b/dashboard/src/views/apps.js
index 4236732d8..b0ffed86d 100644
--- a/dashboard/src/views/apps.js
+++ b/dashboard/src/views/apps.js
@@ -139,12 +139,10 @@ angular.module('Application').controller('AppsController', ['$scope', '$translat
$scope.appPostInstallConfirm = {
app: {},
message: '',
- confirmed: false,
show: function (app) {
$scope.appPostInstallConfirm.app = app;
$scope.appPostInstallConfirm.message = app.manifest.postInstallMessage;
- $scope.appPostInstallConfirm.confirmed = false;
$('#appsPostInstallConfirmModal').modal('show');
@@ -152,8 +150,6 @@ angular.module('Application').controller('AppsController', ['$scope', '$translat
},
submit: function () {
- if (!$scope.appPostInstallConfirm.confirmed) return;
-
$scope.appPostInstallConfirm.app.pendingPostInstallConfirmation = false;
delete localStorage['confirmPostInstall_' + $scope.appPostInstallConfirm.app.id];