1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-11-24 20:06:55 +01:00

chore: information message when you have no connected edge enterprise instances (#10969)

This commit is contained in:
Simon Hornby 2025-11-13 09:32:51 +02:00 committed by GitHub
parent 3b07b66712
commit 8689afe7be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -162,7 +162,26 @@ export const NetworkConnectedEdges = () => {
const levels = Array.from(edgeLevels.keys()).sort((a, b) => a - b);
if (edgeLevels.size === 0)
return <Alert severity='warning'>No data available.</Alert>;
return (
<Alert severity='info'>
<strong>No Enterprise Edge instances connected</strong>
<br />
<br />
Unlock deeper visibility into your Edge network and enable
high-performance streaming for your SDKs.
<br />
<br />
Enterprise Edge gives you:
<br /> Real-time SDK updates through the streaming API
<br /> Full observability into your Edge instances
<br />
<br />
Interested in getting started?{' '}
<a href={`mailto:sales@getunleash.io?subject=Enterprise Edge`}>
Contact us
</a>
</Alert>
);
return (
<ArcherContainer