- |
-
|
- {peerEndpoint.address}
+ {peerListenerAddress.address}
|
- {peerEndpoint.port}
+ {peerListenerAddress.port}
|
- {peerEndpoint.protocol}
+ {peerListenerAddress.protocol}
|
- {peerEndpoint.canonical.toString()}
+ {peerListenerAddress.canonical.toString()}
|
);
}
-export default InstanceEndPointListItem;
+export default InstanceListenerAddressListItem;
diff --git a/awx/ui/src/screens/Instances/InstanceListenerAddressList/index.js b/awx/ui/src/screens/Instances/InstanceListenerAddressList/index.js
new file mode 100644
index 0000000000..8221b6cebb
--- /dev/null
+++ b/awx/ui/src/screens/Instances/InstanceListenerAddressList/index.js
@@ -0,0 +1 @@
+export { default } from './InstanceListenerAddressList';
diff --git a/awx/ui/src/screens/Instances/Instances.js b/awx/ui/src/screens/Instances/Instances.js
index 9836ffa290..94890aa3cc 100644
--- a/awx/ui/src/screens/Instances/Instances.js
+++ b/awx/ui/src/screens/Instances/Instances.js
@@ -25,7 +25,7 @@ function Instances() {
[`/instances/${instance.id}`]: `${instance.hostname}`,
[`/instances/${instance.id}/details`]: t`Details`,
[`/instances/${instance.id}/peers`]: t`Peers`,
- [`/instances/${instance.id}/endpoints`]: t`Endpoints`,
+ [`/instances/${instance.id}/listener_addresses`]: t`Listener Addresses`,
[`/instances/${instance.id}/edit`]: t`Edit Instance`,
});
}, []);