You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title={hasMasterEnvironment ? `${masterEnvironment?.environmentName||'Unknown'} is already the Master environment` : ""}
162
+
>
163
+
<Switchdisabled={hasMasterEnvironment}/>
164
+
</Tooltip>
155
165
</Form.Item>
156
166
167
+
{hasMasterEnvironment&&(
168
+
<Alert
169
+
message="Master Environment Already Exists"
170
+
description={`The environment "${masterEnvironment?.environmentName||'Unknown'}" is already set as the Master environment. Only one Master environment is allowed.`}
171
+
type="warning"
172
+
showIcon
173
+
style={{marginBottom: '16px'}}
174
+
/>
175
+
)}
176
+
157
177
<Alert
158
178
message="License Information"
159
179
description="After creating the environment, the system will automatically check the license status. Make sure the API service URL and API key are correctly configured for license validation."
0 commit comments