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 d02aeb6 commit 3a4436aCopy full SHA for 3a4436a
workspaces/widgets.py
@@ -54,7 +54,11 @@ def global_workspace_selector(user: AppUser, session: dict):
54
display_name = current.display_name(user)
55
with gui.div(className="d-inline-flex align-items-center gap-2 text-truncate"):
56
gui.html(f"{current.html_icon()}")
57
- gui.html(html.escape(display_name), className="d-none d-md-inline")
+ gui.html(
58
+ html.escape(display_name),
59
+ className="d-none d-md-inline text-truncate",
60
+ style={"maxWidth": "150px"},
61
+ )
62
gui.html('<i class="ps-1 fa-regular fa-chevron-down"></i>')
63
64
with (
0 commit comments