mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
* 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
12 lines
329 B
JavaScript
12 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: '<',
|
|
},
|
|
});
|