diff --git a/netbox/project-static/dist/netbox.js b/netbox/project-static/dist/netbox.js index d93ef5d67..fdd9dc943 100644 Binary files a/netbox/project-static/dist/netbox.js and b/netbox/project-static/dist/netbox.js differ diff --git a/netbox/project-static/src/dashboard.ts b/netbox/project-static/src/dashboard.ts index 1483386b2..4efc3899c 100644 --- a/netbox/project-static/src/dashboard.ts +++ b/netbox/project-static/src/dashboard.ts @@ -14,7 +14,9 @@ async function saveDashboardLayout( export function initDashboard(): void { // Initialize the grid - let grid = GridStack.init(); + let grid = GridStack.init({ + cellHeight: 100, + }); // Create a listener for the dashboard save button const gridSaveButton = document.getElementById('save_dashboard') as HTMLButtonElement;