mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
5f3312a8ac
* ui: Add new consul-nspace-list component * ui: Use new consul-nspace-list component * Fix up other components to use linkable list-collection action * ui: Remove some dead CSS
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
import Component from '@ember/component';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
actions: {
|
|
isLinkable: function(item) {
|
|
return !item.DeletedAt;
|
|
},
|
|
},
|
|
});
|