Skip to content

Commit 86f9d7a

Browse files
committed
fix sort order
1 parent dd297f0 commit 86f9d7a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/types/frontmatter.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ export interface FrontMatter {
2323
* Set this to true to mark this page as a draft, and hide it from various other components (such as the PageGrid).
2424
*/
2525
draft?: boolean;
26+
/**
27+
* Set this to true to take all the available width for the page content.
28+
*/
29+
fullWidth?: boolean;
2630
/**
2731
* A list of keywords for indexing with search.
2832
*/
@@ -89,8 +93,4 @@ export interface FrontMatter {
8993
* @example ['v7.119.0', 'next']
9094
*/
9195
versions?: string[];
92-
/**
93-
* Set this to true to take all the available width for the page content.
94-
*/
95-
fullWidth?: boolean;
9696
}

0 commit comments

Comments
 (0)