mirror of https://github.com/hashicorp/consul
15 lines
318 B
JavaScript
15 lines
318 B
JavaScript
|
export default function(clickable) {
|
||
|
return function(obj = {}, scope = '') {
|
||
|
if (scope !== '') {
|
||
|
scope = scope + ' ';
|
||
|
}
|
||
|
return {
|
||
|
...obj,
|
||
|
...{
|
||
|
delete: clickable(scope + '[data-test-delete]'),
|
||
|
confirmDelete: clickable(scope + 'button.type-delete'),
|
||
|
},
|
||
|
};
|
||
|
};
|
||
|
}
|