1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00
portainer/app/kubernetes/components/helm/helm-templates/helm-templates.js
2023-10-12 11:02:09 +13:00

13 lines
322 B
JavaScript

import angular from 'angular';
import controller from './helm-templates.controller';
angular.module('portainer.kubernetes').component('helmTemplatesView', {
templateUrl: './helm-templates.html',
controller,
bindings: {
endpoint: '<',
namespace: '<',
stackName: '<',
onSelectHelmChart: '<',
},
});