Ready for 1.1.3-rc.3 release.

This commit is contained in:
charlesgauthereau
2025-11-04 08:48:46 +01:00
parent bcbd6bbea1
commit a435a92d41
25 changed files with 373 additions and 134 deletions
@@ -10,15 +10,16 @@ import {SidebarMenuCustomMain} from "@/components/wrappers/dashboard/common/side
import {SideBarFooterCredit} from "@/components/wrappers/dashboard/common/sidebar/side-bar-footer-credit";
import {OrganizationCombobox} from "@/components/wrappers/dashboard/organization/organization-combobox";
import {LoggedInButton} from "@/components/wrappers/dashboard/common/logged-in/logged-in-button";
import {env} from "@/env.mjs";
export function AppSidebar() {
const projectName = env.PROJECT_NAME;
return (
<Sidebar collapsible="icon">
<SidebarHeader>
<SidebarMenu>
<SidebarMenuItem>
<SidebarLogo/>
<SidebarLogo projectName={projectName ?? "Portabase"}/>
</SidebarMenuItem>
<SidebarMenuItem>
<OrganizationCombobox/>
@@ -32,10 +33,10 @@ export function AppSidebar() {
<SidebarMenu className="mb-2">
<SidebarMenuItem>
<LoggedInButton />
<LoggedInButton/>
</SidebarMenuItem>
</SidebarMenu>
<SideBarFooterCredit />
<SideBarFooterCredit/>
</Sidebar>
);
}