File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
site/src/components/Navbar Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -269,6 +269,23 @@ const ProxyMenu: FC<{ proxyContextValue: ProxyContextValue }> = ({
269
269
onClose = { closeMenu }
270
270
sx = { { "& .MuiMenu-paper" : { py : 1 } } }
271
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 } } />
272
289
{ proxyContextValue . proxies ?. map ( ( proxy ) => (
273
290
< MenuItem
274
291
onClick = { ( ) => {
You can’t perform that action at this time.
0 commit comments