mirror of https://github.com/rancher/ui.git
parent
e4bda650af
commit
4538f28b81
|
|
@ -31,7 +31,7 @@ export default Service.extend({
|
||||||
|
|
||||||
dnsRecords: function () {
|
dnsRecords: function () {
|
||||||
const intl = get(this, 'intl');
|
const intl = get(this, 'intl');
|
||||||
return get(this, '_allDnsRecords').map(x => convert(x, intl)).sortBy('combined');
|
return get(this, '_allDnsRecords').filter(x => get(x, 'ownerReferences.firstObject.kind') !== 'Ingress').map(x => convert(x, intl)).sortBy('combined');
|
||||||
}.property('_allDnsRecords.@each.{id,namespaceId,displayName,type}'),
|
}.property('_allDnsRecords.@each.{id,namespaceId,displayName,type}'),
|
||||||
|
|
||||||
list: alias('dnsRecords'),
|
list: alias('dnsRecords'),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue