Skip to content

Commit

Permalink
Fix:Removing section from upload page #530
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Apr 30, 2022
1 parent fc8473e commit 591a866
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/pages/upload/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
</widgets-alert>

<!-- Item Upload cards -->
<template v-for="(item, index) in items">
<cards-item-upload-card :ref="`itemCard-${item.index}`" :key="index" :media-type="selectedLibraryMediaType" :item="item" :processing="processing" @remove="removeItem(item)" />
<template v-for="item in items">
<cards-item-upload-card :ref="`itemCard-${item.index}`" :key="item.index" :media-type="selectedLibraryMediaType" :item="item" :processing="processing" @remove="removeItem(item)" />
</template>

<!-- Upload/Reset btns -->
Expand Down

0 comments on commit 591a866

Please sign in to comment.