Skip to content

Commit

Permalink
fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
theorm committed Oct 7, 2024
1 parent 31cff3b commit 5233aed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/CollapsibleParagraph.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div v-html="paragraph.description"></div>
<ol v-if="paragraph.paragraphs.length">
<li
v-for="(subtask, idx) in paragraph.paragraphs"
v-for="subtask in paragraph.paragraphs"
:key="subtask.id"
class="pt-2 mb-2 mx-2 d-flex align-items-center"
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TextReuseClusterMonitor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<template v-slot:default>
<div class="container-fluid">
<div class="row">
<div class="col-6" v-for="(passage, i) in items" :key="passage.id">
<div class="col-6" v-for="passage in items" :key="passage.id">
<TextReusePassageItem
hideCompareButton
:item="passage"
Expand Down
2 changes: 1 addition & 1 deletion src/components/stories/CollapsiblePanel.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const meta: Meta<typeof CollapsiblePanel> = {
return {
components: { CollapsiblePanel },
setup() {
let model = ref(false)
const model = ref(false)
const updateModel = v => (model.value = v)

return { args, model, updateModel }
Expand Down

0 comments on commit 5233aed

Please sign in to comment.