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
@@ -19,10 +19,6 @@ export const sessionsColumns: ColumnDef<Session>[] = [
return timeAgo(row.original.expiresAt);
},
},
{
accessorKey: "ipAddress",
header: "IP Address",
},
{
id: "device",
header: "Device",
@@ -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>
);
}
@@ -2,12 +2,13 @@
import { useSidebar } from "@/components/ui/sidebar";
import Link from "next/link";
import { env } from "@/env.mjs";
import { useTheme } from "next-themes";
import Image from "next/image";
import { useEffect, useState } from "react";
export const SidebarLogo = () => {
export const SidebarLogo = ({projectName}: {
projectName: string;
}) => {
const { state, isMobile } = useSidebar();
const { resolvedTheme } = useTheme();
@@ -28,7 +29,7 @@ export const SidebarLogo = () => {
<Image
loading="eager"
src={"/images/logo.png"}
alt={`Logo ${env.NEXT_PUBLIC_PROJECT_NAME}`}
alt={`Logo ${projectName}`}
className="h-10 w-10 object-contain"
height={10}
width={10}
@@ -38,7 +39,7 @@ export const SidebarLogo = () => {
<Image
loading="eager"
src={imageTheme}
alt={`Logo ${env.NEXT_PUBLIC_PROJECT_NAME}`}
alt={`Logo ${projectName}`}
className="object-contain"
width={190}
height={90}