mirror of
https://github.com/status-im/consul.git
synced 2025-01-18 17:52:17 +00:00
d0b328e272
* 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
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
import Component from '@ember/component';
|
|
import { get } from '@ember/object';
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
actions: {
|
|
isLinkable: function(item) {
|
|
return get(item, 'InstanceCount') > 0;
|
|
},
|
|
},
|
|
});
|