Skip to content

Commit

Permalink
admin: fix iterator key
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <radialapps@gmail.com>
  • Loading branch information
pulsejet committed Mar 19, 2024
1 parent 49e32fe commit e17967d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/admin/sections/FileSupport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
{{ t('memories', 'The following MIME types are configured for preview generation.') }}

<br />
<code v-if="status"
><template v-for="mime in status.mimes">{{ mime }}<br :key="mime" /></template
></code>
<code v-if="status">
<span v-for="mime in status.mimes" :key="mime">{{ mime }}<br /></span>
</code>

<br />

Expand Down

0 comments on commit e17967d

Please sign in to comment.