Skip to main content

Configure a Connector with UI customizations

The Moderne Platform provides default UI elements and help links throughout the interface. However, organizations may want to customize these elements to provide organization-specific help resources or branding.

This guide will show you how to configure the Moderne Connector to customize UI elements with your own help links and labels.

Why customize UI elements?

Organizations may want to customize UI elements for several reasons:

  • Internal help resources: Your organization may have internal documentation or support systems
  • Custom support channels: You may want to direct users to organization-specific help desks or chat systems
  • Accessibility: The default support methods may not be accessible within your organization

Connector configuration

The following table contains the variables/arguments needed to configure custom UI elements for your Moderne Connector. Please note that these variables/arguments must be combined with ones found in other steps in the Configuring the Moderne Connector guide.

Environment variables:

Variable NameRequiredDefaultDescription
MODERNE_UI_MOREHELP_0_LABELfalsenullCustom label for first link under the 'Need more help?' menu. If populated, the URL property must also be populated. Maximum of 3 help items supported.
MODERNE_UI_MOREHELP_0_URIfalsenullThe URL for the first custom help resource. Must be a fully qualified URL that is accessible to users of the platform.
MODERNE_UI_MOREHELP_1_LABELfalsenullCustom label for second link under the 'Need more help?' menu. If populated, the URL property must also be populated.
MODERNE_UI_MOREHELP_1_URIfalsenullThe URL for the second custom help resource. Must be a fully qualified URL that is accessible to users of the platform.
MODERNE_UI_MOREHELP_2_LABELfalsenullCustom label for third link under the 'Need more help?' menu. If populated, the URL property must also be populated.
MODERNE_UI_MOREHELP_2_URIfalsenullThe URL for the third custom help resource. Must be a fully qualified URL that is accessible to users of the platform.

Example:

docker run \
# ... Existing variables
-e MODERNE_UI_MOREHELP_0_LABEL="Getting started" \
-e MODERNE_UI_MOREHELP_0_URI="https://docs.moderne.io/user-documentation/moderne-platform/getting-started" \
-e MODERNE_UI_MOREHELP_1_LABEL="How to guides" \
-e MODERNE_UI_MOREHELP_1_URI="https://docs.moderne.io/user-documentation/moderne-platform/how-to-guides" \
# ... Additional variables