mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-22 03:04:03 +00:00
1fc905efdd
Previously, mock-generated backups and snapshots had empty Instance fields, causing the backups tab node summary counts to show 0. The frontend filters backups by both instance and node name (b.instance === node.instance && b.node === node.name), but without the Instance field populated, no matches were found. Changes: - Set Instance field on VM backups (generator.go:1030) - Set Instance field on container backups (generator.go:1068) - Set Instance field on VM snapshots (generator.go:1323) - Set Instance field on container snapshots (generator.go:1355) This ensures node backup counts display correctly across all tabs.