Skip to content

Commit

Permalink
Move body to last of the list
Browse files Browse the repository at this point in the history
  • Loading branch information
sebousan committed Dec 6, 2023
1 parent 5e8ad9f commit 01daefc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion admin/app/content/expertises.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const expertises = {
sortable_fields: ['title'],
summary: '{{title}}',

fields: [isNotIndex, draft, title, description, body, featured_image]
fields: [isNotIndex, draft, title, description, featured_image, body]
};

export default expertises;
4 changes: 2 additions & 2 deletions admin/app/content/pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const pages = {
description,
featured_image,
hero,
blocks,
body
body,
blocks
],
meta: {
path: {
Expand Down
4 changes: 2 additions & 2 deletions admin/app/content/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const services = {
services_categories,
services_persons,
description,
body,
featured_image
featured_image,
body
]
};

Expand Down

0 comments on commit 01daefc

Please sign in to comment.