🐛 fix: reconcile resource changes

This commit is contained in:
2026-08-13 02:19:14 +07:00
parent 83e52af412
commit 61fa325b2a
2 changed files with 5 additions and 2 deletions
@@ -101,7 +101,9 @@ export class ReverseProxyController extends BaseController {
oldProxy.external_port !== newProxy.external_port ||
oldProxy.listen_port !== newProxy.listen_port ||
oldProxy.description !== newProxy.description ||
oldProxy.service_type !== newProxy.service_type;
oldProxy.service_type !== newProxy.service_type ||
oldProxy.memory !== newProxy.memory ||
oldProxy.type !== newProxy.type;
if (basicPropsChanged) return true;