diff --git a/components/formatter/IngressTarget.vue b/components/formatter/IngressTarget.vue index 963f9a12d0..9d3495b603 100644 --- a/components/formatter/IngressTarget.vue +++ b/components/formatter/IngressTarget.vue @@ -84,7 +84,7 @@ export default { const id = `${ this.namespace }/${ serviceName }`; return isTargetsWorkload - ? this.findWorkload(id)?.detailUrl || '' + ? this.findWorkload(id)?.detailLocation || '' : { resource: SERVICE, id: serviceName, diff --git a/components/formatter/LinkDetail.vue b/components/formatter/LinkDetail.vue index 5c4329c100..c26d8b573e 100644 --- a/components/formatter/LinkDetail.vue +++ b/components/formatter/LinkDetail.vue @@ -27,7 +27,7 @@ export default { return get(this.row, this.opts.reference); } - return this.row?.detailUrl; + return this.row?.detailLocation; }, } }; @@ -35,8 +35,8 @@ export default { diff --git a/components/formatter/LinkDetailImage.vue b/components/formatter/LinkDetailImage.vue index 891f5b5187..1c0eb0e909 100644 --- a/components/formatter/LinkDetailImage.vue +++ b/components/formatter/LinkDetailImage.vue @@ -20,7 +20,7 @@ export default {