Merge branch 'dev' into project-config-to-json

This commit is contained in:
Zai Shi 2025-08-01 01:05:11 +02:00 committed by GitHub
commit 44eecf6bbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View File

@ -250,7 +250,6 @@ export function GlobeSection({ countryData, totalUsers, children }: {countryData
className='absolute top-0 right-0 bottom-0 backdrop-blur-md'
style={{
left: ((globeContainerSize?.width ?? 0) - (sectionContainerSize?.width ?? 0)) / 2 + (globeWindowSize?.width ?? 0),
zIndex: -1,
}}
onMouseMove={() => {

View File

@ -10,7 +10,7 @@ export function ProjectCard({ project }: { project: AdminProject }) {
return (
<Link href={urlString`/projects/${project.id}`}>
<Card className='flex flex-col justify-between'>
<Card className='flex flex-col justify-between h-full'>
<CardHeader>
<CardTitle className="normal-case truncate">{project.displayName}</CardTitle>
<CardDescription>{project.description}</CardDescription>

View File

@ -66,6 +66,7 @@ export function VersionAlerter({ severeOnly }: { severeOnly: boolean }) {
whiteSpace: "pre-wrap",
maxHeight: "110px",
overflow: "auto",
zIndex: 5,
}}>
{versionCheckResult && (enableNonSevereVersionCheck || versionCheckResult.severe) && versionCheckResult.error}
</div>