Skip to content

Commit

Permalink
Backport PR #10836: Fix link to the security documentation (#10838)
Browse files Browse the repository at this point in the history
Co-authored-by: Michał Krassowski <5832902+krassowski@users.noreply.github.com>
  • Loading branch information
meeseeksmachine and krassowski committed Aug 15, 2021
1 parent f5651d2 commit e0a6d74
Showing 1 changed file with 8 additions and 4 deletions.
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

0 comments on commit e0a6d74

Please sign in to comment.