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.

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
    "Name": "Hide Add Property Link",
    "Filter": {},
    "Behavior": {
    "MetadataCard": {
    "Theme": {
    "AddPropertyLink": {
    "IsHidden": true
    }
    }
    }
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

  • We already have this in config

    The result:

    while the same config exists in other classes;

    the result;

  • I understand that you have created sub-rules for this in each class. My recommendation is to try moving the hiding of the 'Add Property Link' action into a standalone rule placed at the top of the MDCC. Use the code I provided without any additional filters.

Reply
  • I understand that you have created sub-rules for this in each class. My recommendation is to try moving the hiding of the 'Add Property Link' action into a standalone rule placed at the top of the MDCC. Use the code I provided without any additional filters.

Children