File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
pages/ManagementSettingsPage Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -97,15 +97,17 @@ const OrganizationsSettingsNavigation: FC<
97
97
aria-expanded = { isPopoverOpen }
98
98
className = "w-60 justify-between p-2 h-11"
99
99
>
100
- < div className = "flex flex-row gap-2 items-center p-2" >
100
+ < div className = "flex flex-row gap-2 items-center p-2 truncate " >
101
101
{ activeOrganization && (
102
102
< Avatar
103
103
size = "sm"
104
104
src = { activeOrganization . icon }
105
105
fallback = { activeOrganization . display_name }
106
106
/>
107
107
) }
108
- { activeOrganization ?. display_name || activeOrganization ?. name }
108
+ < span className = "truncate" >
109
+ { activeOrganization ?. display_name || activeOrganization ?. name }
110
+ </ span >
109
111
</ div >
110
112
< ChevronDown />
111
113
</ Button >
@@ -133,7 +135,9 @@ const OrganizationsSettingsNavigation: FC<
133
135
src = { organization . icon }
134
136
fallback = { organization . display_name }
135
137
/>
136
- { organization . display_name || organization . name }
138
+ < span className = "truncate" >
139
+ { organization ?. display_name || organization ?. name }
140
+ </ span >
137
141
</ CommandItem >
138
142
</ Link >
139
143
) ) }
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ export const CreateOrganizationPageView: FC<
100
100
</ Popover >
101
101
</ Badges >
102
102
103
- < header className = "flex flex-col gap-2 items-center" >
103
+ < header className = "flex flex-col items-center" >
104
104
< h1 className = "text-3xl font-semibold m-0" > New Organization</ h1 >
105
105
< p className = "max-w-md text-sm text-content-secondary text-center" >
106
106
Organize your deployment into multiple platform teams with unique
You can’t perform that action at this time.
0 commit comments