fix: make custom search select handle undefined options (#1094)
* fix: make search select handle undefined options * fix: kanban y-scroll
This commit is contained in:
parent
012486df11
commit
9ccc35d181
14 changed files with 179 additions and 180 deletions
|
|
@ -152,7 +152,7 @@ export const AnalyticsSidebar: React.FC<Props> = ({
|
|||
|
||||
return (
|
||||
<div key={project.id}>
|
||||
<h5 className="text-sm flex items-center gap-1">
|
||||
<div className="text-sm flex items-center gap-1">
|
||||
{project.emoji ? (
|
||||
<span className="grid h-6 w-6 flex-shrink-0 place-items-center">
|
||||
{String.fromCodePoint(parseInt(project.emoji))}
|
||||
|
|
@ -171,8 +171,13 @@ export const AnalyticsSidebar: React.FC<Props> = ({
|
|||
{project?.name.charAt(0)}
|
||||
</span>
|
||||
)}
|
||||
<span className="break-all">{project.name}</span>
|
||||
</h5>
|
||||
<h5 className="break-all">
|
||||
{project.name}
|
||||
<span className="text-brand-secondary text-xs ml-1">
|
||||
({project.identifier})
|
||||
</span>
|
||||
</h5>
|
||||
</div>
|
||||
<div className="mt-4 space-y-3 pl-2">
|
||||
<div className="flex items-center justify-between gap-2 text-xs">
|
||||
<div className="flex items-center gap-2">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue