Merge branch 'master' into bug/3361-non-required-integers

This commit is contained in:
shockey
2017-07-14 15:41:40 -07:00
committed by GitHub
27 changed files with 630 additions and 402 deletions

View File

@@ -578,6 +578,9 @@ export const sorters = {
operationsSorter: {
alpha: (a, b) => a.get("path").localeCompare(b.get("path")),
method: (a, b) => a.get("method").localeCompare(b.get("method"))
},
tagsSorter: {
alpha: (a, b) => a.localeCompare(b)
}
}