Rename "Go" Button in Constellation Assignment Card

We would like to know:

  1. Is the “Go” label configurable?

  2. Can it be renamed to a custom label such as “Edit”?

  3. If configurable, what is the recommended approach in Constellation

    Pega Infinity '25.1.2?

  4. If not configurable, is this an OOTB Constellation limitation?

We searched Field Values but could not identify a field value that controls this Assignment Card button label.

@VardhiniN16743136 The use of Go in the “assignments” part of the Full Case Page and inside the “to do” widget on a landing page are prescribed elements of the design system, they are no configurable.

In Pega Constellation, traditional Field Values (Rule-Obj-FieldValue) work differently compared to traditional UI (Section/Harness-based) architectures. You won’t be able to get at the UI using this approach.

Hi @VardhiniN16743136

There is a workaround available for this requirement that might help

Yes, it is possible to replace the default “Go” button with “Edit” or another required label.

In our implementation, we created a custom component named Open Assignment. This component opens the corresponding assignment/case while giving us control over the button label and behavior.

Using this approach, the button can display labels such as Edit, Open, Continue, or any other label required by the business.

We also applied minor CSS customization to align the component with the expected Constellation UI styling.

So, instead of relying on the default “Go” action, we use our custom Open Assignment component to open the assignment and display the required action label.

This approach is working as expected in our implementation.

You can try changing the CSS for the Button, Constellation provides a CSS file (pyC11nCustomFonts) to add custom fonts to the theme, we leveraged this file to override the button text by identifying the button element using data-testid, utilizing pyC11nCustomFonts with color: transparent and an ::after pseudo-element is a creative CSS workaround to force a visual label change from “Go”. but i do not think it will be good do it at production level