OS: Win 11 x64
Build Version: 20260609.1
Repro Steps:
- Create an Azure Container App.
- Expand the above container app -> Right-click Scaling node and select "View Properties".
- Verify that the configuration contains:
"minReplicas": null.
- Expand the Scaling node and observe that it displays
Min / max replicas: 0 / 10.
- Right-click the Scaling node and select "Edit Scaling Range...".
- Without making any changes, press Enter to save and deploy.
- After deployment completes, right-click Scaling node and select "View Properties" again.
Expect:
No configuration changes should be applied when the user does not modify any scaling values. The property should remain: "minReplicas": null.
Actual:
The property is changed to "minReplicas": 0 even though no user changes were made.
More Info:
- UI default value (0) is treated as user input during save.
- Leads to unintended configuration mutation.
- Breaks distinction between unset (null) and explicit (0) values.
OS: Win 11 x64
Build Version: 20260609.1
Repro Steps:
"minReplicas": null.Min / max replicas: 0 / 10.Expect:
No configuration changes should be applied when the user does not modify any scaling values. The property should remain:
"minReplicas": null.Actual:
The property is changed to
"minReplicas": 0even though no user changes were made.More Info: