Skip to content

Commit

Permalink
Bug fix: bad variable name for newFinetune
Browse files Browse the repository at this point in the history
  • Loading branch information
hiveer committed Sep 14, 2024
1 parent a10e151 commit d4d3637
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/finetune/NewFinetune.vue
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,10 @@
).json()
if (error.value) {
dataForm.value.runtime_framework_id = ''
finetuneframeworks.value = []
finetuneFrameworks.value = []
} else {
const body = data.value
finetuneframeworks.value = body.data
finetuneFrameworks.value = body.data
dataForm.value.runtime_framework_id = filterFrameworks.value[0]?.id || ''
}
}
Expand Down

0 comments on commit d4d3637

Please sign in to comment.