mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* fix(app): use deps injection in router correctly * feat(app): guard against using wrong endpoint type * feat(sidebar): supply endpoint id * feat(templates): move custom templates to docker
13 lines
335 B
JavaScript
13 lines
335 B
JavaScript
angular.module('portainer.docker').component('dockerSidebarContent', {
|
|
templateUrl: './dockerSidebarContent.html',
|
|
bindings: {
|
|
endpointApiVersion: '<',
|
|
swarmManagement: '<',
|
|
standaloneManagement: '<',
|
|
adminAccess: '<',
|
|
offlineMode: '<',
|
|
toggle: '<',
|
|
currentRouteName: '<',
|
|
endpointId: '<',
|
|
},
|
|
});
|