We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c90352 commit 03bb2d2Copy full SHA for 03bb2d2
src/index.ts
@@ -89,7 +89,7 @@ const extension: JupyterFrontEndPlugin<void> = {
89
metadata
90
);
91
const diff = new Date(<any>cellEndTime - <any>cellStartTime);
92
- if (diff.getSeconds() >= minimumCellExecutionTime) {
+ if (diff.getTime() / 1000 >= minimumCellExecutionTime) {
93
const cellDuration = diff.toISOString().substr(11, 8);
94
const cellNumber =
95
cellNumberType === 'cell_index'
0 commit comments