Skip to content

Commit 419ee86

Browse files
committed
Add space around / in the nbextension display
1 parent f42ca54 commit 419ee86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nbresuse/static/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ define([
4444
if (limits['memory']) {
4545
if (limits['memory']['rss']) {
4646
maxMemoryUsage = humanFileSize(limits['memory']['rss']);
47-
display += "/" + maxMemoryUsage
47+
display += " / " + maxMemoryUsage
4848
}
4949
if (limits['memory']['warn']) {
5050
$('#nbresuse-display').addClass('nbresuse-warn');
@@ -76,4 +76,4 @@ define([
7676
return {
7777
load_ipython_extension: load_ipython_extension,
7878
};
79-
});
79+
});

0 commit comments

Comments
 (0)