mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
* feat(home): add the ability to refresh endpoint information * style(home): update refresh confirmation message
18 lines
397 B
JavaScript
18 lines
397 B
JavaScript
angular.module('portainer.app').component('endpointList', {
|
|
templateUrl: 'app/portainer/components/endpoint-list/endpointList.html',
|
|
controller: function() {
|
|
var ctrl = this;
|
|
|
|
this.state = {
|
|
textFilter: ''
|
|
};
|
|
},
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
endpoints: '<',
|
|
dashboardAction: '<',
|
|
snapshotAction: '<',
|
|
showSnapshotAction: '<'
|
|
}
|
|
});
|