mirror of https://github.com/portainer/portainer
13 lines
329 B
JavaScript
13 lines
329 B
JavaScript
import angular from 'angular';
|
|||
|
|||
import { EdgeStackStatusController } from './edgeStackStatusController';
|
|||
import './edgeStackStatus.css';
|
|||
|
|||
angular.module('portainer.edge').component('edgeStackStatus', {
|
|||
templateUrl: './edgeStackStatus.html',
|
|||
controller: EdgeStackStatusController,
|
|||
bindings: {
|
|||
stackStatus: '<',
|
|||
},
|
|||
});
|