perf: change fn name
gitea/salix-front/pipeline/pr-master This commit looks good Details

This commit is contained in:
Javier Segarra 2024-11-22 10:04:17 +01:00
parent e2f092948e
commit c6b547bc55
1 changed files with 2 additions and 2 deletions

View File

@ -196,7 +196,7 @@ async function fetch() {
originalData.value = {};
}
}
function HandleRequestArgs() {
function handleRequestArgs() {
const isUrlCreate = $props.urlCreate;
const differences = getDifferences(formData.value, originalData.value);
return {
@ -216,7 +216,7 @@ async function save() {
isLoading.value = true;
try {
formData.value = trimData(formData.value);
const { method, body, url } = HandleRequestArgs();
const { method, body, url } = handleRequestArgs();
let response;