diff --git a/webadmin/src/views/apps.html b/webadmin/src/views/apps.html index 3a6dfe06f..853e30c8f 100644 --- a/webadmin/src/views/apps.html +++ b/webadmin/src/views/apps.html @@ -431,6 +431,10 @@ +
+ diff --git a/webadmin/src/views/apps.js b/webadmin/src/views/apps.js index 5426cfaf5..52ee5aed6 100644 --- a/webadmin/src/views/apps.js +++ b/webadmin/src/views/apps.js @@ -370,7 +370,11 @@ angular.module('Application').controller('AppsController', ['$scope', '$location }; $scope.showLogs = function (app) { - window.open('/logs.html?id=' + app.id, 'Cloudron Logs', 'width=1024,height=800'); + window.open('/logs.html?id=' + app.id, 'Logs', 'width=1024,height=800'); + }; + + $scope.showTerminal = function (app) { + window.open('/terminal.html?id=' + app.id, 'Terminal', 'width=1024,height=800'); }; $scope.showError = function (app) {