mirror of
https://github.com/status-im/consul.git
synced 2025-01-25 05:00:32 +00:00
f154aabd57
* Add sorting to Intentions with tests * Skip Intentions url back test * Create comparator for intention and implement in template * Add a intentions navigation feature test
9 lines
258 B
JavaScript
9 lines
258 B
JavaScript
export default function(visitable, creatable, clickable, intentions, popoverSelect) {
|
|
return creatable({
|
|
visit: visitable('/:dc/intentions'),
|
|
intentions: intentions(),
|
|
sort: popoverSelect(),
|
|
create: clickable('[data-test-create]'),
|
|
});
|
|
}
|