Fixed server create ui

This commit is contained in:
2025-07-16 21:29:43 +02:00
parent 61253919cf
commit e83d1351cb
5 changed files with 24 additions and 22 deletions

View File

@@ -291,6 +291,9 @@ public class ServersController : Controller
var server = await ServerRepository
.Get()
.Include(x => x.Node)
.Include(x => x.Star)
.Include(x => x.Variables)
.Include(x => x.Backups)
.FirstOrDefaultAsync(x => x.Id == id);
if (server == null)