Asterisk needed for Mandatory fields instead of pipe/bar in option inputs

Asterisk needed for Mandatory fields instead of pipe/bar in option inputs


Asterisk needed for Mandatory fields instead of pipe/bar in option inputs in catalog form. This was a user feedback.


  1. Mandatory fields in catalog UI like to select a Morpheus Group input, must be provided a ‘*’ as mandatory field instead of ‘|’ in the tab.

Hi Venkat,

This could be done with CSS overrides in Whitelabeling. Here is a sample css to replace the bar with a red asterix:

.required-bar:after {
  content: "*";
  color: red;
  font-weight: bold;
}
.required-bar {
  display: inline-block;
  width: 0; /* Hide the original content of the span */
}
1 Like

This topic was automatically closed after 2 days. New replies are no longer allowed.