78d999b5f6
* feat(helm): add helm chart backport to ce EE-1409 (#5425) * EE-1311 Helm Chart Backport from EE * backport to ce Co-authored-by: Matt Hook <hookenz@gmail.com> * Pull in all changes from tech review in EE-943 * added helm to sidebar after rebase, sync CE with EE * removed redundant handler (not used) - to match EE * feat(helm) display helm charts - backend EE-1236 * copy over components for new applications view EE-1236 * Add new applications datatable component * Add more migrated files * removed test not applicable to CE * baclkported EE app data table code to CE * removed redundant helm repo url * resolved conflicts, updated code * using endpoint middleware * PR review fixes * using constants, openapi updated Co-authored-by: Richard Wei <54336863+WaysonWei@users.noreply.github.com> Co-authored-by: zees-dev <dev.786zshan@gmail.com>
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
import angular from 'angular';
|
|
import './applications-datatable-url.css';
|
|
|
|
angular.module('portainer.kubernetes').component('kubernetesApplicationsDatatableUrl', {
|
|
templateUrl: './applications-datatable-url.html',
|
|
bindings: {
|
|
publishedUrl: '@',
|
|
},
|
|
});
|