mirror of https://github.com/portainer/portainer
13 lines
340 B
JavaScript
13 lines
340 B
JavaScript
import { HostDetailsPanelController } from './host-details-panel-controller';
|
|
|
|
angular.module('portainer.docker').component('hostDetailsPanel', {
|
|
templateUrl: './host-details-panel.html',
|
|
controller: HostDetailsPanelController,
|
|
bindings: {
|
|
host: '<',
|
|
isBrowseEnabled: '<',
|
|
browseUrl: '@',
|
|
environmentId: '<',
|
|
},
|
|
});
|