Skip to content

Commit

Permalink
Fix typo in config form v-model attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
bkis committed Feb 3, 2025
1 parent 7f8a483 commit 4df8e62
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ const methodOptions = ['GET', 'POST', 'QUERY', 'SEARCH'].map((m) => ({
/>
</n-form-item>

<!-- ENDPOINT URL -->
<!-- HTTP METHOD -->
<n-form-item path="config.apiCall.method" :label="$t('resources.settings.config.apiCall.method')">
<n-select v-model::value="model.method" :options="methodOptions" />
<n-select v-model:value="model.method" :options="methodOptions" />
</n-form-item>

<!-- REQUEST BODY CONTENT TYPE -->
Expand Down

0 comments on commit 4df8e62

Please sign in to comment.