Skip to content

Commit

Permalink
Allows individual features to pass through
Browse files Browse the repository at this point in the history
  • Loading branch information
Arul- committed Mar 27, 2021
1 parent a5e5070 commit fd81262
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/dashboard/DashboardView.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,7 @@ export default class DashboardView extends React.Component {
let features = this.context.currentApp.serverInfo.features;

let coreSubsections = [];
if (features.schemas &&
features.schemas.addField &&
features.schemas.removeField &&
features.schemas.addClass &&
features.schemas.removeClass) {
if (features.schemas) {
coreSubsections.push({
name: 'Browser',
link: '/browser'
Expand Down

0 comments on commit fd81262

Please sign in to comment.