1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 08:19:40 +02:00

fix(container-creation): add default/override options (#4119)

* fix(container-creation): add default/override options

* fix(container-creation): allow override with empty string on creation

* fix(container-creation): add tooltip & update placeholder

* fix(container-creation): add warning on duplicate
This commit is contained in:
itsconquest 2020-08-07 14:10:40 +12:00 committed by GitHub
parent 1b88ca2285
commit b9c2bf487b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 85 additions and 7 deletions

View file

@ -7,6 +7,7 @@ angular.module('portainer.docker').component('porImageRegistry', {
autoComplete: '<',
labelClass: '@',
inputClass: '@',
onImageChange: '&',
},
require: {
form: '^form',

View file

@ -25,6 +25,7 @@
ng-model="$ctrl.model.Image"
name="image_name"
placeholder="e.g. myImage:myTag"
ng-change="$ctrl.onImageChange()"
required
/>
</div>