Skip to content

Commit

Permalink
fixed type error
Browse files Browse the repository at this point in the history
  • Loading branch information
y0014984 committed Jan 5, 2025
1 parent abef5e9 commit a987ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Memory.vue
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ function getMemRowAsString(memPage: string[], index: number) {
/>
<span v-if="(index + 1) % 16 === 0">
|
<span class="memString" v-for="(value2, index2) in getMemRowAsString(memPage, index)"> {{ value2 }}</span> |
<span class="memString" v-for="value2 in getMemRowAsString(memPage, index)"> {{ value2 }}</span> |
</span>
<br v-if="(index + 1) % 16 === 0" />
</div>
Expand Down

0 comments on commit a987ae1

Please sign in to comment.