Skip to content

Commit

Permalink
fix: wbs-issue isn't rendered on the tbody
Browse files Browse the repository at this point in the history
  • Loading branch information
xel1045 committed Jan 29, 2024
1 parent 7c0a0d7 commit 27b2ad2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions resources/js/components/WbsIssues.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
</tr>
</thead>

<tbody
vue:is="wbs-issue"
<wbs-issue
:class="[$index % 2 === 0 ? 'odd' : 'even']"
:issue.sync="issues[$index]"
v-for="(issue, $index) in issues"
Expand All @@ -18,7 +17,7 @@
@keydown.alt.enter.exact.native="newNode(issue.id)"
@keydown.alt.down.exact.native="navigateDown($index)"
@keydown.alt.up.exact.native="navigateUp($index)"
></tbody>
></wbs-issue>

<tbody v-if="issues.length === 0">
<tr>
Expand Down

0 comments on commit 27b2ad2

Please sign in to comment.