Name Text In Detail View Not Displaying Correcly For One Module Only

Good morning,

Following an upgrade to v10.0.2, we have a bit of a weird issue where the Name field text isn't displaying correctly in a custom module and looks like the below (you can just make out the text):

On edit, the text is visible:

However, every other module, both standard and custom, display correctly:

Has anyone ever seen this issue before and would anyone have any ideas about what could be causing this issue? It seems to be module specific but I can't see anything obvious in the module's files.

Many thanks,

Ian

  • I would start by removing any code level customizations you have in place.  Then test to see if this is an issue with the custom module itself or the custom module when running custom code.

  • Thanks, Christian.

    I wasn't sure if there was general area to check as we have a standard custom deployment. It's a bit of a needle in a haystack scenario frustratingly so would take a while to remove all the bespoke areas.

    I'll start chopping bits out and see what happens.

    Many thanks,

    Ian

  • Hey 

    I've had a similar issue earlier - if the name field is defined as a link, it gets rendered as a <a> element instead of <div>, so the color changes.

    One easy css fix is to force the color of links in headerpane, something like:

    .headerpane > h1 > .record-cell[data-name=name] a {
    color: white !important;
    }
  • That was it!

    Being colour blind certainly didn't help in this case. I'd checked the vardefs and didn't see anything link-related in there but updating the vardef and adding link = false fixed it like a charm!

    Thank you! Slight smile