mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* feat(ui): persist search criteria * fix(ui): trying make templates search working correctly * fix(ui): corrected search persistance on home and templates * fix(ui): corrected javascript errors
16 lines
425 B
JavaScript
16 lines
425 B
JavaScript
angular.module('portainer.app').component('templateList', {
|
|
templateUrl: 'app/portainer/components/template-list/templateList.html',
|
|
controller: 'TemplateListController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
templates: '<',
|
|
tableKey: '@',
|
|
selectAction: '<',
|
|
deleteAction: '<',
|
|
showSwarmStacks: '<',
|
|
showAddAction: '<',
|
|
showUpdateAction: '<',
|
|
showDeleteAction: '<'
|
|
}
|
|
});
|