Menu Bar Icons Meaning and How to Hide

Can you tell me what the revert icon does? Does it revert all changes since the last login?

Is it safe to comment out the HTML lines of the buttons we don’t want to show? All of my end users will have only ‘viewing’ rights in Tableau, so they won’t need to make changes to the dashboards themselves.

Hi @janicer ,

Revert icon should behave very similarly to the revert button in the tableau toolbar. If an end user selects filters or actions that change the dashboard, it should revert the dashboard back to prior to filtering or selecting.

Yes, you can comment out button lines that you don’t want to use. You should also be able to comment out single lines or single buttons in html using a like this:

<div class="d-flex align-items-center">
                <z-nav-download-button variant="primary"></z-nav-download-button>
                <z-nav-share-button variant="primary"></z-nav-share-button>
                <z-nav-undo-button variant="primary"></z-nav-undo-button>
                <z-nav-redo-button variant="primary"></z-nav-redo-button>
                <!--<z-nav-revert-button variant="primary"></z-nav-revert-button>-->
                <z-nav-refresh-button variant="primary"></z-nav-refresh-button>
                <z-nav-play-pause-button variant="primary"></z-nav-play-pause-button>
                <z-nav-user-menu variant="primary"></z-nav-user-menu>
            </div>
1 Like