Current Behavior
On the client dashboard (App panel ListServers) in grid/card layout, each server card's CPU/RAM/uptime freezes at its first-rendered value and never updates. Switching the user's dashboard_layout to table fixes it — columns update every 15s as expected.
Root cause (from inspection):
- Grid cards render via ServerEntryColumn → @livewire('server-entry', ['server' => $server, 'lazy' => true], key($server->id)), and
server-entry.blade.php has its own wire:poll.15s.
- The parent ListServers table also polls (->poll('15s')). On each parent poll, the child server-entry is re-emitted as an empty
placeholder (<div wire:name="server-entry" ...> with no rendered html in the Livewire response), resetting the lazy child
before its own poll completes.
- Net effect: the nested child never advances past its mount value. Table layout renders the stats as direct parent-table columns,
so the parent poll refreshes them correctly.
Expected Behavior
Card stats refresh on the 15s poll, same as table layout.
Steps to Reproduce
- Set dashboard layout to Grid (cards).
- Open the dashboard for a running server.
- Observe CPU/RAM/uptime — they stay frozen at the initial value indefinitely (page reload shows a new frozen value).
Panel Version
1.0.0-beta35
Wings Version
v1.0.0-beta26
Games and/or Eggs Affected
Minecraft (Paper)
Docker Image
ghcr.io/pelican-eggs/yolks:java_25
Error Logs
Is there an existing issue for this?
Current Behavior
On the client dashboard (App panel ListServers) in grid/card layout, each server card's CPU/RAM/uptime freezes at its first-rendered value and never updates. Switching the user's dashboard_layout to table fixes it — columns update every 15s as expected.
Root cause (from inspection):
server-entry.blade.php has its own wire:poll.15s.
placeholder (<div wire:name="server-entry" ...> with no rendered html in the Livewire response), resetting the lazy child
before its own poll completes.
so the parent poll refreshes them correctly.
Expected Behavior
Card stats refresh on the 15s poll, same as table layout.
Steps to Reproduce
Panel Version
1.0.0-beta35
Wings Version
v1.0.0-beta26
Games and/or Eggs Affected
Minecraft (Paper)
Docker Image
ghcr.io/pelican-eggs/yolks:java_25
Error Logs
Is there an existing issue for this?