2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 22:30:43 +00:00
John Cowen 300a52f5ae Merge pull request from hashicorp/ui-staging
ui: UI Release Merge (1.8-beta-3: ui-staging merge)
2020-06-03 17:46:46 +00:00

18 lines
297 B
JavaScript

import Controller from '@ember/controller';
export default Controller.extend({
queryParams: {
filterBy: {
as: 'type',
},
search: {
as: 'filter',
replace: true,
},
},
actions: {
sendClone: function(item) {
this.send('clone', item);
},
},
});