mirror of
https://github.com/postmanlabs/openapi-to-postman.git
synced 2022-11-29 22:05:00 +03:00
Fixed issue where collection folder name for paths were having extra spaces
This commit is contained in:
@@ -990,7 +990,7 @@ module.exports = {
|
||||
// only return a Postman folder if this folder has>1 children in its subtree
|
||||
// otherwise we can end up with 10 levels of folders with 1 request in the end
|
||||
itemGroup = new sdk.ItemGroup({
|
||||
name: utils.insertSpacesInName(resource.name)
|
||||
name: resource.name
|
||||
// TODO: have to add auth here (but first, auth to be put into the openapi tree)
|
||||
});
|
||||
// If a folder has only one child which is a folder then we collapsed the child folder
|
||||
|
||||
Reference in New Issue
Block a user