Skip to content

Commit

Permalink
Edit order of fields to be similar to DocumentInspector
Browse files Browse the repository at this point in the history
  • Loading branch information
oandregal committed Aug 9, 2024
1 parent 187fa8c commit 395115f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/edit-site/src/components/post-edit/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function PostEditForm( { postType, postId } ) {
);
const form = {
type: 'panel',
fields: [ 'title', 'author', 'date', 'comment_status', 'status' ],
fields: [ 'title', 'status', 'date', 'author', 'comment_status' ],
};
const [ edits, setEdits ] = useState( initialEdits );
const itemWithEdits = useMemo( () => {
Expand Down

0 comments on commit 395115f

Please sign in to comment.