Merge pull request #1411 from gentslava/canary

fix: breadcrumbs UX
This commit is contained in:
Mauricio Siu
2025-03-06 23:58:42 -06:00
committed by GitHub
3 changed files with 3 additions and 8 deletions

View File

@@ -383,9 +383,8 @@ export const AddTemplate = ({ projectId }: Props) => {
side="top" side="top"
> >
<span> <span>
If ot server is selected, the application If no server is selected, the application will be
will be deployed on the server where the deployed on the server where the user is logged in.
user is logged in.
</span> </span>
</TooltipContent> </TooltipContent>
</Tooltip> </Tooltip>

View File

@@ -1055,10 +1055,6 @@ export default function Page({ children }: Props) {
</Link> </Link>
</BreadcrumbLink> </BreadcrumbLink>
</BreadcrumbItem> </BreadcrumbItem>
<BreadcrumbSeparator className="block" />
<BreadcrumbItem>
<BreadcrumbPage>{activeItem?.title}</BreadcrumbPage>
</BreadcrumbItem>
</BreadcrumbList> </BreadcrumbList>
</Breadcrumb> </Breadcrumb>
</div> </div>

View File

@@ -37,7 +37,7 @@ export const BreadcrumbSidebar = ({ list }: Props) => {
)} )}
</BreadcrumbLink> </BreadcrumbLink>
</BreadcrumbItem> </BreadcrumbItem>
<BreadcrumbSeparator className="block" /> {_index + 1 < list.length && <BreadcrumbSeparator className="block" />}
</Fragment> </Fragment>
))} ))}
</BreadcrumbList> </BreadcrumbList>