Skip to content

Commit 2ecc379

Browse files
authored
fix: truncated project name in analytics dropdown (#5883)
1 parent bf22066 commit 2ecc379

File tree

1 file changed

+1
-1
lines changed
  • web/core/components/analytics/custom-analytics/select

1 file changed

+1
-1
lines changed

web/core/components/analytics/custom-analytics/select/project.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const SelectProject: React.FC<Props> = observer((props) => {
2323
value: projectDetails?.id,
2424
query: `${projectDetails?.name} ${projectDetails?.identifier}`,
2525
content: (
26-
<div className="flex items-center gap-2">
26+
<div className="flex items-center gap-2 max-w-[300px]">
2727
<span className="text-[0.65rem] text-custom-text-200 flex-shrink-0">{projectDetails?.identifier}</span>
2828
<span className="flex-grow truncate">{projectDetails?.name}</span>
2929
</div>

0 commit comments

Comments
 (0)