Skip to content

Commit

Permalink
Fixed drop-zone.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
dax0102 committed Sep 10, 2023
1 parent 7fcb532 commit 00f72a3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
"tauri": "tauri"
},
"dependencies": {
"@headlessui/vue": "^1.7.15",
"@heroicons/vue": "^2.0.18",
"@tauri-apps/api": "^1.4.0",
"@headlessui/vue": "1.7.15",
"@heroicons/vue": "2.0.18",
"@tauri-apps/api": "1.4.0",
"add": "^2.0.6",
"i": "^0.3.7",
"nanoid": "^4.0.2",
"npm": "^9.8.1",
"pinia": "^2.1.6",
"nanoid": "4.0.2",
"npm": "9.8.1",
"pinia": "2.1.6",
"tauri-plugin-sql-api": "https://github.com/tauri-apps/tauri-plugin-sql",
"vue": "^3.3.4",
"vue-i18n": "^9.3.0-beta.24",
"vue": "3.3.4",
"vue-i18n": "9.3.0-beta.24",
"vue-router": "4.2.4",
"vue-toast-notification": "^3.1.1",
"vue3-dropzone": "^2.0.1"
"vue-toast-notification": "3.1.1",
"vue3-dropzone": "2.0.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
Expand Down
4 changes: 2 additions & 2 deletions src/components/characters/character-editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ async function submit() {
<dropdown
v-if="traits[position.value].length > 0"
:options="traits[position.value]"
:display-key="(e) => e"
:display-key="(e) => String(e)"
:value-key="(e) => e"
:model-value="ministerTraits[position.value]"
@update:model-value="ministerTraits[position.value] = $event" />
Expand Down Expand Up @@ -313,7 +313,7 @@ async function submit() {
<dropdown
v-if="traits[position.value].length > 0"
:options="traits[position.value]"
:display-key="(e) => e"
:display-key="(e) => String(e)"
:value-key="(e) => e"
:model-value="officerTraits[position.value]"
@update:model-value="officerTraits[position.value] = $event" />
Expand Down

0 comments on commit 00f72a3

Please sign in to comment.