mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
* 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
15 lines
381 B
JavaScript
15 lines
381 B
JavaScript
angular.module('portainer.docker').component('porImageRegistry', {
|
|
templateUrl: './porImageRegistry.html',
|
|
controller: 'porImageRegistryController',
|
|
bindings: {
|
|
model: '=', // must be of type PorImageRegistryModel
|
|
pullWarning: '<',
|
|
autoComplete: '<',
|
|
labelClass: '@',
|
|
inputClass: '@',
|
|
onImageChange: '&',
|
|
},
|
|
require: {
|
|
form: '^form',
|
|
},
|
|
});
|