Skip to content

Commit

Permalink
Fix link to the security documentation (#10836)
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Aug 15, 2021
1 parent 13eae19 commit 26c35fe
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 26c35fe

Please sign in to comment.