Skip to content

Commit

Permalink
Fix missing monitors in subgroups due to missing filterFunc (#5084)
Browse files Browse the repository at this point in the history
Co-authored-by: David Luhmer <david.luhmer@wetteronline.de>
  • Loading branch information
David-Development and dlwetteronline authored Sep 4, 2024
1 parent 935194b commit 3c23a34
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/MonitorListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,15 @@
<div v-if="!isCollapsed" class="childs">
<MonitorListItem
v-for="(item, index) in sortedChildMonitorList"
:key="index" :monitor="item"
:key="index"
:monitor="item"
:isSelectMode="isSelectMode"
:isSelected="isSelected"
:select="select"
:deselect="deselect"
:depth="depth + 1"
:filter-func="filterFunc"
:sort-func="sortFunc"
/>
</div>
</transition>
Expand Down

0 comments on commit 3c23a34

Please sign in to comment.