mirror of
https://github.com/status-im/consul.git
synced 2025-01-31 16:07:58 +00:00
3b244d8f56
* Add sorting to ACLs roles with comparator * Add acls/roles sorting test * Add navigation feature test to roles * Update onchange value target for sorting roles
9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
export default function(visitable, creatable, roles, popoverSelect) {
|
|
return {
|
|
visit: visitable('/:dc/acls/roles'),
|
|
roles: roles(),
|
|
sort: popoverSelect(),
|
|
...creatable(),
|
|
};
|
|
}
|