mirror of
https://github.com/portainer/portainer.git
synced 2025-07-28 09:49:40 +02:00
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
|
import angular from 'angular';
|
||
|
|
||
|
angular.module('portainer.kubernetes').component('kubernetesApplicationServicesTable', {
|
||
|
templateUrl: './services-table.html',
|
||
|
bindings: {
|
||
|
services: '<',
|
||
|
application: '<',
|
||
|
publicUrl: '<',
|
||
|
},
|
||
|
});
|