mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Fix missing monitors in subgroups due to missing filterFunc (#5084)
Co-authored-by: David Luhmer <david.luhmer@wetteronline.de>
This commit is contained in:
parent
935194bca3
commit
3c23a34fff
1 changed files with 4 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue