mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-18 11:55:46 +08:00
Fix output prompt when execution_count missing.
Closes gh-3235
This commit is contained in:
parent
6526a19c0b
commit
8657d99d9f
@ -471,7 +471,7 @@ define([
|
|||||||
};
|
};
|
||||||
|
|
||||||
OutputArea.output_prompt_classical = function(prompt_value) {
|
OutputArea.output_prompt_classical = function(prompt_value) {
|
||||||
return $('<bdi>').text(i18n.msg.sprintf(i18n.msg._('Out[%d]:'),prompt_value));
|
return $('<bdi>').text(i18n.msg.sprintf(i18n.msg._('Out[%s]:'),prompt_value));
|
||||||
};
|
};
|
||||||
|
|
||||||
OutputArea.output_prompt_function = OutputArea.output_prompt_classical;
|
OutputArea.output_prompt_function = OutputArea.output_prompt_classical;
|
||||||
|
Loading…
Reference in New Issue
Block a user