Disable "add property" not working in New Web ?

Hello,

We are running 25.4.14762.4 on our prod server. We are transioning to new web. We encountered a strage bug in New Web; even the "add property" link is disabled on MDCC for every class, in some classes it just shows up. Is this a known bug or should I report to support ?

Parents
  • Hi,
    We have not observed such a defect in our case, which makes me suspect that there might be some misconfiguration in MDCC . This can happen with more complex configurations. Try moving this rule to the beginning of the configuration, defining it without any filters. This should hide the 'Add Property' link everywhere.

    {
        "Name": "Hide Add Property Link",
        "Filter": {},
        "Behavior": {
            "MetadataCard": {
                "Theme": {
                    "AddPropertyLink": {
                        "IsHidden": true
                    }
                }
            }
        }
    }
    

Reply
  • Hi,
    We have not observed such a defect in our case, which makes me suspect that there might be some misconfiguration in MDCC . This can happen with more complex configurations. Try moving this rule to the beginning of the configuration, defining it without any filters. This should hide the 'Add Property' link everywhere.

    {
        "Name": "Hide Add Property Link",
        "Filter": {},
        "Behavior": {
            "MetadataCard": {
                "Theme": {
                    "AddPropertyLink": {
                        "IsHidden": true
                    }
                }
            }
        }
    }
    

Children