You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it seems that an additional , can appended to the path in some cases and it has been detected using swagger ui's execution feature ([email protected]). It could be traced back to the following line:
As styledValue can become undefined we have to compensate for this case and replace the styledValue with empty string.
Default value of separator for Array.prototype.join is ,. When we pass undefined to the join function it's the same as not passing a parameter at all and , is used to join the values.
thanks for pointing this out, wasn't aware of this fact. Going to rewrite the specification as it may suddenly stop working if we update the dependencies.
Hello,
it seems that an additional
,
can appended to the path in some cases and it has been detected using swagger ui's execution feature ([email protected]). It could be traced back to the following line:swagger-js/src/execute/oas3/parameter-builders.js
Line 26 in 3627ead
The default behavior of Array.join will be used if
styledValue
isundefined
.The following yaml definition creates this case, if the input field in swagger ui remains untouched
Many thanks in advance.
The text was updated successfully, but these errors were encountered: