diff --git a/frontend/src/pages/inbounds/InboundList.vue b/frontend/src/pages/inbounds/InboundList.vue index 4f54b366..9122abc9 100644 --- a/frontend/src/pages/inbounds/InboundList.vue +++ b/frontend/src/pages/inbounds/InboundList.vue @@ -143,7 +143,7 @@ function projectInbound(dbInbound, predicate) { } if (!Array.isArray(settings.clients)) return next; const filtered = settings.clients.filter(predicate); - next.settings = Inbound.Settings.fromJson(dbInbound.protocol, { clients: filtered }); + next.settings = Inbound.Settings.fromJson(dbInbound.protocol, { ...settings, clients: filtered }); next.invalidateCache(); return next; }