diff --git a/dashboard/src/views/app.html b/dashboard/src/views/app.html index 0e0202f1c..27dbe6970 100644 --- a/dashboard/src/views/app.html +++ b/dashboard/src/views/app.html @@ -632,7 +632,7 @@ {{ info.title }} - + {{ 'appstore.installDialog.portReadOnly' | tr }} @@ -938,7 +938,7 @@ {{ info.title }} - + {{ 'appstore.installDialog.portReadOnly' | tr }} {{ location.ports[env] }} to {{ location.ports[env] + info.portCount - 1 }} ({{ info.portCount }} ports) diff --git a/dashboard/src/views/app.js b/dashboard/src/views/app.js index 5250f8421..9cf0d3bbd 100644 --- a/dashboard/src/views/app.js +++ b/dashboard/src/views/app.js @@ -58,7 +58,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location' $scope.diskUsageDate = 0; $scope.APP_TYPES = APP_TYPES; - $scope.HOST_PORT_MIN = 1024; + $scope.HOST_PORT_MIN = 1; $scope.HOST_PORT_MAX = 65535; $scope.ROBOTS_DISABLE_INDEXING_TEMPLATE = '# Disable search engine indexing\n\nUser-agent: *\nDisallow: /'; diff --git a/dashboard/src/views/appstore.html b/dashboard/src/views/appstore.html index 855bc89d5..7be700212 100644 --- a/dashboard/src/views/appstore.html +++ b/dashboard/src/views/appstore.html @@ -75,7 +75,7 @@ {{ info.title }} - + {{ 'appstore.installDialog.portReadOnly' | tr }} @@ -407,7 +407,7 @@ {{ 'appstore.accountDialog.switchToSignUpAction' | tr }} {{ 'appstore.accountDialog.switchToLoginAction' | tr }} - or use a setup token + or Use a setup token diff --git a/dashboard/src/views/appstore.js b/dashboard/src/views/appstore.js index a66a6c1e6..05c7b212b 100644 --- a/dashboard/src/views/appstore.js +++ b/dashboard/src/views/appstore.js @@ -10,7 +10,7 @@ angular.module('Application').controller('AppStoreController', ['$scope', '$translate', '$location', '$timeout', '$routeParams', 'Client', function ($scope, $translate, $location, $timeout, $routeParams, Client) { Client.onReady(function () { if (!Client.getUserInfo().isAtLeastAdmin) $location.path('/'); }); - $scope.HOST_PORT_MIN = 1024; + $scope.HOST_PORT_MIN = 1; $scope.HOST_PORT_MAX = 65535; $scope.ready = false;