Merge pull request #2558 from sreeshas/topic/sreeshas/fix_escape_resource_name
Fix escaping resource name.
This commit is contained in:
@@ -111,7 +111,7 @@ SwaggerUi.Views.MainView = Backbone.View.extend({
|
|||||||
|
|
||||||
addResource: function(resource, auths){
|
addResource: function(resource, auths){
|
||||||
// Render a resource and add it to resources li
|
// Render a resource and add it to resources li
|
||||||
resource.id = resource.id.replace(/\s/g, '_');
|
resource.id = resource.id.replace(/[[\]{}()*+?,\\/^$|#\s]/g, '_');
|
||||||
|
|
||||||
// Make all definitions available at the root of the resource so that they can
|
// Make all definitions available at the root of the resource so that they can
|
||||||
// be loaded by the JSonEditor
|
// be loaded by the JSonEditor
|
||||||
|
|||||||
Reference in New Issue
Block a user