-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: layout refactor * fix: profile auth issue * chore: project setting layout refactor * chore: workspace layout refactor * chore: profile layout refactor * chore: layout import refactor
- Loading branch information
1 parent
d72d3da
commit cea39c7
Showing
39 changed files
with
1,487 additions
and
2,021 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { FC } from "react"; | ||
|
||
import { useRouter } from "next/router"; | ||
|
||
// ui | ||
import { BreadcrumbItem, Breadcrumbs } from "@plane/ui"; | ||
// hooks | ||
import { observer } from "mobx-react-lite"; | ||
|
||
export const UserProfileHeader: FC = observer(() => { | ||
const router = useRouter(); | ||
return ( | ||
<div | ||
className={`relative flex w-full flex-shrink-0 flex-row z-10 items-center justify-between gap-x-2 gap-y-4 border-b border-custom-border-200 bg-custom-sidebar-background-100 p-4`} | ||
> | ||
<div className="flex items-center gap-2 flex-grow w-full whitespace-nowrap overflow-ellipsis"> | ||
<div> | ||
<Breadcrumbs onBack={() => router.back()}> | ||
<BreadcrumbItem title="User Profile" unshrinkTitle /> | ||
</Breadcrumbs> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
122 changes: 0 additions & 122 deletions
122
web/layouts/auth-layout-legacy/project-authorization-wrapper.tsx
This file was deleted.
Oops, something went wrong.
42 changes: 0 additions & 42 deletions
42
web/layouts/auth-layout-legacy/user-authorization-wrapper.tsx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.