mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
7d89e519a2
UI to accompany the new ACLs APIs
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
export default function(clickable, is) {
|
|
return function(obj, scope = '') {
|
|
if (scope !== '') {
|
|
scope = scope + ' ';
|
|
}
|
|
return {
|
|
...obj,
|
|
...{
|
|
cancel: clickable(scope + '[type=reset]'),
|
|
cancelIsEnabled: is(':not(:disabled)', scope + '[type=reset]'),
|
|
},
|
|
};
|
|
};
|
|
}
|