42aa8ceb00
* refactor(edge-groups): use es6 imports * refactor(edge-jobs): es6 imports * refactor(edge-stacks): use es6 imports * refactor(edge-compute): use es6 imports in components * refactor(edge-compute): use named imports
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: '<',
|
|
},
|
|
});
|