mirror of
https://github.com/portainer/portainer.git
synced 2025-07-20 22:09:41 +02:00
* feat(network-creation): macvlan driver for swarm * refactor(network-creation): layout rework to make it simpler with MACVLAN and keep it consistent with other drivers * fix(network-creation): MACVLAN - parent network card is now properly saved, names are not prefixed anymore and the --attachable option is now supported * refactor(network-creation): PR macvlan review - rework of macvlan view + code optimisation * fix(network-creation): disable attachable and internal options on macvlan config creation
15 lines
433 B
JavaScript
15 lines
433 B
JavaScript
angular.module('portainer.docker').component('macvlanNodesDatatable', {
|
|
templateUrl: 'app/docker/components/datatables/macvlan-nodes-datatable/macvlanNodesDatatable.html',
|
|
controller: 'GenericDatatableController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
dataset: '<',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
showIpAddressColumn: '<',
|
|
accessToNodeDetails: '<',
|
|
state: '='
|
|
}
|
|
});
|