Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix link to the security documentation #10836

Merged
merged 1 commit into from Aug 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 8 additions & 4 deletions packages/notebook/src/actions.tsx
Expand Up @@ -1737,10 +1737,14 @@ export namespace NotebookActions {
'Selecting trust will re-render this notebook in a trusted state.'
)}
<br />
{trans.__(
'For more information, see the <a href="https://jupyter-server.readthedocs.io/en/stable/operators/security.html">%1</a>',
trans.__('Jupyter security documentation')
)}
{trans.__('For more information, see')}{' '}
<a
href="https://jupyter-server.readthedocs.io/en/stable/operators/security.html"
target="_blank"
rel="noopener noreferrer"
>
{trans.__('the Jupyter security documentation')}
</a>
</p>
);

Expand Down