Skip to content

Customize the User Interface


Many parts of the user interface, SEAL Print Client, can be hidden.

Here, you see the parts of the menu at the left:

User Interface Parts


In SEAL Operator, configure the keys for the user interface:

  1. Export the complete configuration of SEAL Operator from Consul to a YAML file in order to ensure that the current configuration settings are used.

    operator config export <filename>.yml --insecure
    
  2. In the env section, specify the correspondent key for the seal-operator-ui service:

    Example - hide all parts of the left menu that can be hidden

    env:
      service:
        operator_ui:
          tag:
            any:
              ...
              DISABLE_MY_LISTS_ACCESS: true
              DISABLE_TASK_NOTIFICATIONS: true
              DISABLE_LATEST_TASKS: true
              DISABLE_ADD_PANEL: true
              ...
    
  3. Save the file <filename>.yml and re-import it to Consul.

    operator config import <filename>.yml --insecure
    
  4. Close the user interface, SEAL Print Client, and open it again.


Literature - keys

For further information about the available keys, refer to the description of the Keys.


Back to top