Can't disable the Tabs widget

Bokeh version: 2.2.3
OS: WSL

Seems like it’s not possible to disable the Tabs widget.
Example:

from bokeh.io.doc import curdoc
from bokeh.models.layouts import Panel, Tabs
from bokeh.models.widgets.markups import Div

tabs = Tabs(
    tabs=[
        Panel(child=Div(text="hello"), title="1"),
        Panel(child=Div(text="there"), title="2"),
    ],
    disabled=True
)

curdoc().add_root(tabs)

Any known issues with disabling this widget? workarounds maybe?

Any known issues with disabling this widget?

Nothing I am aware of but AFAIK no one has ever asked about this either. I would suggest opening a bug report issue on GitHhub.

@Bryan Thanks…done!