mirror of
https://github.com/portainer/portainer.git
synced 2025-07-28 01:39:39 +02:00
fix(app): set defaults for select boxes (#4235)
* fix(container): select runtime by default * fix(network): set default network config * fix(container): set default network container placeholder * fix(services): default service mount
This commit is contained in:
parent
d850e18ff0
commit
7329ea91ca
4 changed files with 5 additions and 6 deletions
|
@ -139,7 +139,7 @@ angular.module('portainer.docker').controller('CreateServiceController', [
|
|||
};
|
||||
|
||||
$scope.addVolume = function () {
|
||||
$scope.formValues.Volumes.push({ Source: '', Target: '', ReadOnly: false, Type: 'volume' });
|
||||
$scope.formValues.Volumes.push({ Source: null, Target: '', ReadOnly: false, Type: 'volume' });
|
||||
};
|
||||
|
||||
$scope.removeVolume = function (index) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue