Skip to main content
Version: v2.0

Show page

The show page is for showing a single record of a model. It is the page that is shown when you click on a record in the index page. The component structure of the show page is as follows:

ModelShowDescription

Changing displayed fields

const globalOverrides = {
blog: {
show: {
ModelShowDescription: {
props: {
paths: ["title", "author"],
},
},
},
},
};