docs/src/content/docs/configuration/layout/options.mdx
Any column can define the align, grow, width, and hidden options.
| Property | Type | Default |
|---|---|---|
grow | boolean | false |
Specify whether the column should grow to fill the available space.
Set this value to true and the column's width expands to fill any leftover space in the
terminal after accounting for other columns and the preview pane. Set this value to false
to use the value of width instead.
We recommend only setting this for one column in a given section layout.
| Property | Type | Minimum |
|---|---|---|
width | integer | 1 |
Specify the column's width by character count. Because the dashboard expects the terminal font to be monospace, this is a reliable way to ensure a minimum width for readability.
| Property | Type | Default |
|---|---|---|
hidden | boolean | false |
Specify whether the column should be hidden from view. Set this value to true to hide the
column or false to show it.
| Property | Type | Default |
|---|---|---|
align | string | left |
Specify the horizontal alignment of the column's content. Valid values are:
left — Align content to the left (default)right — Align content to the rightcenter — Center the contentThis is useful for numeric columns like comment counts where right-alignment improves readability.
prs:
layout:
numComments:
width: 5
align: right