fix: delete not working properly on request body (#2861)

This commit is contained in:
Akash K
2022-11-25 08:30:43 +05:30
committed by GitHub
parent 17d72b9922
commit 75c0350584

View File

@@ -332,7 +332,9 @@ const deleteBodyParam = (index: number) => {
})
}
workingParams.value.splice(index, 1)
workingParams.value = workingParams.value.filter(
(_, arrIndex) => arrIndex != index
)
}
const clearContent = () => {