diff --git a/notebook/static/notebook/js/about.js b/notebook/static/notebook/js/about.js index ac799e0c9..50ef7ad3d 100644 --- a/notebook/static/notebook/js/about.js +++ b/notebook/static/notebook/js/about.js @@ -11,7 +11,7 @@ require([ // use underscore template to auto html escape var text = 'You are using Jupyter notebook.

'; text = text + 'The version of the notebook server is '; - text = text + _.template('<%- version %>')({ version: sys_info.ipython_version }); + text = text + _.template('<%- version %>')({ version: sys_info.notebook_version }); if (sys_info.commit_hash) { text = text + _.template('-<%- hash %>')({ hash: sys_info.commit_hash }); }