We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 078a3cf commit 4b54ae4Copy full SHA for 4b54ae4
site/src/components/Navbar/NavbarView.tsx
@@ -269,6 +269,23 @@ const ProxyMenu: FC<{ proxyContextValue: ProxyContextValue }> = ({
269
onClose={closeMenu}
270
sx={{ "& .MuiMenu-paper": { py: 1 } }}
271
>
272
+ <MenuItem
273
+ sx={[
274
+ { fontSize: 14 },
275
+ { "&:hover": { backgroundColor: "transparent" } },
276
+ { wordWrap: "break-word" },
277
+ { inlineSize: "200px" },
278
+ { whiteSpace: "normal" },
279
+ { textAlign: "center" },
280
+ ]}
281
+ onClick={(e) => {
282
+ // Stop the menu from closing
283
+ e.stopPropagation()
284
+ }}
285
+ >
286
+ Select the closest region to you to improve workspace connections.
287
+ </MenuItem>
288
+ <Divider sx={{ borderColor: (theme) => theme.palette.divider }} />
289
{proxyContextValue.proxies?.map((proxy) => (
290
<MenuItem
291
onClick={() => {
0 commit comments