File tree Expand file tree Collapse file tree 2 files changed +1
-20
lines changed
features/organizations/components Expand file tree Collapse file tree 2 files changed +1
-20
lines changed Original file line number Diff line number Diff line change 1- import { ChevronLeftIcon } from "@heroicons/react/20/solid" ;
21import Link from "next/link" ;
32import DocPopup from "@/src/components/layouts/doc-popup" ;
43import { type Status , StatusBadge } from "./status-badge" ;
@@ -50,27 +49,9 @@ export default function Header({
5049 level ?: "h2" | "h3" ;
5150 className ?: string ;
5251} ) {
53- const backHref =
54- props . breadcrumb &&
55- [ ...props . breadcrumb . map ( ( i ) => i . href ) . filter ( Boolean ) ] . pop ( ) ;
56-
5752 return (
5853 < div className = { cn ( level === "h2" ? "mb-4" : "mb-2" , props . className ) } >
5954 < div >
60- { backHref ? (
61- < nav className = "sm:hidden" aria-label = "Back" >
62- < Link
63- href = { backHref }
64- className = "flex items-center text-sm font-medium text-muted-foreground hover:text-primary"
65- >
66- < ChevronLeftIcon
67- className = "-ml-1 mr-1 h-5 w-5 flex-shrink-0 text-muted-foreground"
68- aria-hidden = "true"
69- />
70- Back
71- </ Link >
72- </ nav >
73- ) : null }
7455 { level === "h2" ? (
7556 < BreadcrumbComponent items = { props . breadcrumb } />
7657 ) : null }
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ export const OrganizationProjectOverview = () => {
165165 actionButtons = {
166166 < >
167167 < Input
168- className = "w-56"
168+ className = "w-36 lg:w- 56"
169169 placeholder = "Search projects"
170170 onChange = { ( e ) => setQueryParams ( { search : e . target . value } ) }
171171 />
You can’t perform that action at this time.
0 commit comments