Skip to content

Commit

Permalink
remove index refs
Browse files Browse the repository at this point in the history
  • Loading branch information
eckermania committed Jan 23, 2025
1 parent 9c13646 commit b055f49
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@
<v-row style="overflow-y: auto; max-height:30em">
<v-col>
<v-row
v-for="(file, index) in fileUploadList"
:key="index"
v-for="file in fileUploadList"
:key="file.name"
height="20em"
style="overflow: hidden; overflow-y: auto;"
>
Expand Down Expand Up @@ -394,7 +394,6 @@ export default {
reader.onload = () => {
let statusJson = {
name: fileValue.name,
index: fileValue.index,
fileContents: reader.result,
status: FILE_UPLOAD_STATUS.PENDING,
error: null,
Expand All @@ -407,7 +406,6 @@ export default {
reader.onerror = (error) => {
let statusJson = {
name: fileValue.name,
index: fileValue.index,
fileContents: null,
status: FILE_UPLOAD_STATUS.ERROR,
error: error,
Expand Down

0 comments on commit b055f49

Please sign in to comment.