mirror of
https://github.com/portainer/portainer.git
synced 2025-07-20 13:59:40 +02:00
Null vars fix
This commit is contained in:
parent
cc1b67575c
commit
cf18a3cd60
1 changed files with 3 additions and 3 deletions
|
@ -59,8 +59,6 @@
|
|||
$scope.newCfg.Binds.push(bind);
|
||||
});
|
||||
|
||||
console.log($scope.newCfg);
|
||||
|
||||
ViewSpinner.stop();
|
||||
}, function (e) {
|
||||
if (e.status === 404) {
|
||||
|
@ -130,7 +128,9 @@
|
|||
if (b.ReadOnly) {
|
||||
bindLine += ':ro';
|
||||
}
|
||||
binds.push(bindLine);
|
||||
if (b.HostPath != '' || !b.DefaultBind) {
|
||||
binds.push(bindLine);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue