We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to integrate swagger in the application and swagger ui is stuck at "fetching resource list: /api/swagger.json"
F12 on the browser indicates the below issue @ swagger-client.js line no. 626
Uncaught TypeError: Cannot read property 'length' of null
swagger-client.js: line no. 626 if(typeof param['enum'] !== 'undefined') {
I am using dropwizard-swagger 0.7 version with swagger-core / swagger-annotation / swagger-jaxrs / swagger-jersey2-jaxrs version of 1.5.1-M2.
I have tried to direct access the /api/swagger.json and I think the problem seems to be below "null" parameters returned in the json.
Any thoughts on the issue.
parameters: [ { name: "type", in: "query", description: null, required: false, type: "string", items: null, collectionFormat: null, default: null, pattern: null, format: null, enum: null }
The text was updated successfully, but these errors were encountered:
I have this exact issue. @saurabhsyzhi were you able to fix it?
Sorry, something went wrong.
No branches or pull requests
I am trying to integrate swagger in the application and swagger ui is stuck at "fetching resource list: /api/swagger.json"
F12 on the browser indicates the below issue @ swagger-client.js line no. 626
Uncaught TypeError: Cannot read property 'length' of null
swagger-client.js: line no. 626
if(typeof param['enum'] !== 'undefined') {
I am using dropwizard-swagger 0.7 version with swagger-core / swagger-annotation / swagger-jaxrs / swagger-jersey2-jaxrs version of 1.5.1-M2.
I have tried to direct access the /api/swagger.json and I think the problem seems to be below "null" parameters returned in the json.
Any thoughts on the issue.
parameters: [
{
name: "type",
in: "query",
description: null,
required: false,
type: "string",
items: null,
collectionFormat: null,
default: null,
pattern: null,
format: null,
enum: null
}
The text was updated successfully, but these errors were encountered: