Deleting untagged images will remove them from your ACR after a defined period()

in helper/src/components/addonsTab.js [67:76]


                <MessageBar styles={{ root: { marginTop: '10px', width: '700px' } }} messageBarType={MessageBarType.warning}>Deleting untagged images will remove them from your ACR after a defined period (<a target="_new" href="https://docs.microsoft.com/en-us/azure/container-registry/container-registry-retention-policy">docs</a>) (*preview)</MessageBar>
                {addons.acrUntaggedRetentionPolicyEnabled && (
                    <div>
                    <Stack.Item style={{ marginTop: '10px', marginLeft: "50px"}}>
                        <Slider label="Days to retain untagged images for" min={0} max={365} step={1} defaultValue={addons.acrUntaggedRetentionPolicy} showValue={true}
                            onChange={(v) => updateFn("acrUntaggedRetentionPolicy", v)}
                            snapToStep />
                    </Stack.Item>
                    </div>
                )}