Skip to content

Commit ea4c577

Browse files
DominikB2014claude
andauthored
feat(dashboards): Increase default height for Laravel table widgets (#109966)
Increases the default height of the paths, commands, and jobs table widgets on the Laravel overview dashboard from 2 to 3 rows. This shows more data by default without requiring users to manually resize. Y-positions are adjusted to prevent widget overlap. Refs DAIN-1274 --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent 45ba7af commit ea4c577

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

static/app/views/dashboards/utils/prebuiltConfigs/laravelOverview/laravelOverview.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const PATHS_TABLE: Widget = {
5656
x: 0,
5757
y: 7,
5858
w: 6,
59-
h: 2,
59+
h: 3,
6060
minH: TABLE_MIN_HEIGHT,
6161
},
6262
};
@@ -102,7 +102,7 @@ const COMMANDS_TABLE: Widget = {
102102
x: 0,
103103
y: 10,
104104
w: 6,
105-
h: 2,
105+
h: 3,
106106
minH: TABLE_MIN_HEIGHT,
107107
},
108108
};
@@ -150,7 +150,7 @@ const JOBS_TABLE: Widget = {
150150
x: 0,
151151
y: 13,
152152
w: 6,
153-
h: 2,
153+
h: 3,
154154
minH: TABLE_MIN_HEIGHT,
155155
},
156156
};

0 commit comments

Comments
 (0)