fix(rack-planner): revamped port layout with ml-auto and border-l to ensure SFPs are visible on the right

This commit is contained in:
2026-03-22 15:24:04 -05:00
parent f6b6f49379
commit 96adb1e130
2 changed files with 32 additions and 30 deletions

12
scripts/check_ports.ts Normal file
View File

@@ -0,0 +1,12 @@
import { PrismaClient } from '@prisma/client';
const prisma = new PrismaClient();
async function check() {
const modules = await prisma.module.findMany({
include: { ports: true }
});
console.log(JSON.stringify(modules, null, 2));
}
check().catch(console.error);