How to Hide the Favorite Icon for All Actions Across the Instance

Is there a way to hide the favorite (star) icon for all actions across both the Studio and Portal interfaces in Decisions for all users?

Comments

  • edited April 25

    While Decisions does not provide a built-in feature to hide the favorite icon globally, this can be accomplished using a custom CSS override. This solution helps prevent end users from unintentionally adding actions to favorites for all users.

    To hide the favorite icon across the instance, follow these steps:

    1. Create a CSS file and add the following snippet:
    .dp-actions-favorite-button {
        display: none;
    }
    
    1. Upload the CSS file under: System > Designers > CSS
    2. Set the uploaded CSS file as the default.

    📌 Note: This is a sample CSS snippet. You may need to inspect elements using your browser's Developer Tools and adjust the selector if your UI styling differs.

    Relevant Documentation:

    Uploading CSS in Decisions

Sign In or Register to comment.