mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
Merge pull request #3236 from takluyver/i3235
Fix output prompt when execution_count missing.
This commit is contained in:
commit
7445be5943
@ -471,7 +471,7 @@ define([
|
||||
};
|
||||
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user