Skip to content

Commit

Permalink
Merge pull request #8057 from jasongrout/recordtiming
Browse files Browse the repository at this point in the history
Fix cell execution when recording timing
  • Loading branch information
saulshanabrook committed Mar 24, 2020
2 parents 2e858d1 + 3675fad commit 3b4a300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cells/src/widget.ts
Expand Up @@ -1076,11 +1076,11 @@ export namespace CodeCell {
label = 'execute_input';
break;
default:
return false;
return true;
}
const value = msg.header.date;
if (!value) {
return false;
return true;
}
const timingInfo: any = Object.assign(
{},
Expand Down

0 comments on commit 3b4a300

Please sign in to comment.