File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ export class InteractiveCell extends React.Component<IInteractiveCellProps> {
189
189
onClick = { gatherCode }
190
190
hidden = {
191
191
this . props . cellVM . cell . state === CellState . error ||
192
+ this . props . cellVM . cell . state === CellState . executing ||
192
193
this . props . cellVM . cell . data . cell_type === 'markdown' ||
193
194
! this . props . settings . gatherIsInstalled
194
195
}
Original file line number Diff line number Diff line change @@ -598,6 +598,7 @@ export class NativeCell extends React.Component<INativeCellProps> {
598
598
this . props . cellVM . cell . data . execution_count === null ||
599
599
this . props . cellVM . hasBeenRun === null ||
600
600
this . props . cellVM . hasBeenRun === false ||
601
+ this . props . cellVM . cell . state === CellState . executing ||
601
602
this . isError ( ) ||
602
603
this . isMarkdownCell ( ) ||
603
604
! this . props . gatherIsInstalled ;
You can’t perform that action at this time.
0 commit comments