We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e95319a commit bb915eeCopy full SHA for bb915ee
webui/src/components/dashboard/http/request/HttpParameters.vue
@@ -30,7 +30,7 @@ const examples = computed(() => {
30
return result
31
})
32
const sortedParameters = computed(() => {
33
- props.parameters?.sort((p1, p2) => {
+ return props.parameters?.sort((p1, p2) => {
34
const r = getParameterTypeSortOrder(p1.type) - getParameterTypeSortOrder(p2.type)
35
if (r !== 0) {
36
return r
0 commit comments