Skip to content

Commit

Permalink
fix(playground): expItemLineupのプロパティ名
Browse files Browse the repository at this point in the history
  • Loading branch information
chika3742 committed Aug 31, 2023
1 parent 8824ce1 commit 53abc69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playground/pages/material-card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ watch(loading, (_loading) => {
<MaterialCard
:material-image="() => '/_nuxt/assets/img/test_small.webp'"
:quantity="5000"
:rarity="(materialId) => expItemLineup.find(e => e.id === materialId)?.rarity ?? 3"
:rarity="(materialId) => expItemLineup.find(e => e.itemId === materialId)?.rarity ?? 3"
bookmark-state="partial"
:exp-item-lineup="expItemLineup"
is-exp-item
Expand All @@ -71,7 +71,7 @@ watch(loading, (_loading) => {
:exp-item-lineup="expItemLineup"
:material-image="() => '/_nuxt/assets/img/test_small.webp'"
:quantity="9000"
:rarity="(materialId) => expItemLineup.find(e => e.id === materialId)?.rarity ?? 3"
:rarity="(materialId) => expItemLineup.find(e => e.itemId === materialId)?.rarity ?? 3"
bookmark-state="none"
initial-selected-exp-item-id="expItem2"
:bookmark-button-loading="loading"
Expand Down

0 comments on commit 53abc69

Please sign in to comment.