Skip to content

Commit

Permalink
fixing relative endpoint path in respec-oas.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Schuh committed Jun 4, 2024
1 parent ea77da3 commit d67e052
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion respec-oas.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function buildComponentTables({config, document, apis}) {
if(path.trim().length > 0) {
const endpoint = getEndpoint({apis, path});
for(const verb in endpoint) {
const expectedCaller = endpoint[verb]['x-expectedCaller'];
var expectedCaller = endpoint[verb]['x-expectedCaller'];
const tableRow = document.createElement('tr');
if(expectedCaller === undefined)
{
Expand Down

0 comments on commit d67e052

Please sign in to comment.