In the jupyter notebook, the Dash application's cell run results, how to cancel the link below: Open in new window for

In the jupyter notebook, the Dash application’s cell run results, how to cancel the link below: Open in new window for…

Is this using jupyter-plotly-dash?

If so, then setting add_external_link to False will remove it, although from inspection of the code it looks like only the link is removed and not the following text. I’ve created this issue to address this.

@delsim Thanks for the answer, but I don’t know where to set add_external_link=False

You have some code along the lines of

app = JupyterDash('SomeAppName')

and it is a property of app that you need to set, eg

app = JupyterDash('SomeAppName')
app.add_external_link = False

As of v0.3.0 this should now remove both the link and the text.

Thank you very much, the problem has been solved perfectly