Change Default View

By default the API Listing view is a grid view.

Open <API-M_HOME>/repository/deployment/server/jaggeryapps/devportal/site/public/theme/defaultTheme.js file in a text editor.

The following configuration will change the default API listing to a table view.

const Configurations = {
    custom: {
        defaultApiView: 'list',
    },
};

Changes done in the defaultTheme.js will be reflected directly in the devportal. ( It's not required to restart the server or rebuild the source code)

https://apim.docs.wso2.com/en/3.1.0/assets/img/learn/change-default-view.png

Top