ProgressRoot and ProgressSection in dash_mantine_components with tooltip

Hi there

I couldn’t wait not to upgrade dash-mantine-components to the latest version 0.14 and I have been updating previous code to reinstate same functionality

I have an issue with the progress bar component dmc.ProgressRoot.
before I was including a Tooltip component around each dmc.ProgressSection, and worked great, particularly for short ProgressSection elements where the inside text was not visible

Here the original intent in one of the examples that I have

Now I need to comment out the tooltip to make the progress sections look right, but I loose the tooltip

        html.H6('Rol'),
        dmc.ProgressRoot(
            [
                # dmc.Tooltip(
                dmc.ProgressSection(
                    dmc.ProgressLabel(each['company']),
                    value=each['duration'],
                    color=each['color'],
                )#,
            #     label=each['company'],
            #     position="top"
            # ) 
            for each in rol],
            size=25,
        ),

Is there any way to bring back the tooltip ?

Many thanks

Hi @marcoV

Looks like you found a bug - I opened an issue for it here: [bug] The Progress with Tooltips not working · Issue #319 · snehilvj/dash-mantine-components · GitHub

Thanks for reporting!

1 Like

Thanks @AnnMarieW , looking forward to it :slight_smile: