Skip to content

Commit

Permalink
fix failed test
Browse files Browse the repository at this point in the history
  • Loading branch information
dannleed committed Jul 16, 2024
1 parent f6862d5 commit 3d177de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions forward_engineering/ddlProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ module.exports = (baseProvider, options, app) => {
},
}[tableOptions.format] || {},
),
properties: jsonSchema.properties,
properties: jsonSchema?.properties || {},
};
},

Expand Down Expand Up @@ -462,7 +462,7 @@ module.exports = (baseProvider, options, app) => {
enableRefresh: detailsTab.enableRefresh,
maxStaleness: detailsTab.maxStaleness,
allowNonIncrementalDefinition: detailsTab.allowNonIncrementalDefinition,
properties: jsonSchema.properties,
properties: jsonSchema?.properties || {},
};
},

Expand Down

0 comments on commit 3d177de

Please sign in to comment.