Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
distantnative committed Jun 9, 2024
1 parent 3d18718 commit 18bca90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion panel/src/components/Dialogs/ErrorDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<dd :key="'detail-message-' + JSON.stringify(detail)">
<template v-if="typeof detail.message === 'object'">
<ul>
<li v-for="msg in detail.message" :key="msgIndex">
<li v-for="msg in detail.message" :key="msg">
{{ msg }}
</li>
</ul>
Expand Down
3 changes: 2 additions & 1 deletion panel/src/components/Lab/Docs/Examples.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
v-for="example in examples"
:key="JSON.stringify(example)"
language="html"
>{{ example.content }}</k-code
>
{{ example.content }}
</k-code>
</section>
</template>

Expand Down

0 comments on commit 18bca90

Please sign in to comment.