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 93ff101 commit b3f35a0Copy full SHA for b3f35a0
src/packages/jupyter/redux/actions.ts
@@ -385,7 +385,7 @@ export abstract class JupyterActions extends Actions<JupyterStoreState> {
385
// Might throw a CellWriteProtectedException
386
public set_cell_input(id: string, input: string, save = true): void {
387
if (!this.store) return;
388
- if (this.store.getIn(["this.st", id, "input"]) == input) {
+ if (this.store.getIn(["cells", id, "input"]) == input) {
389
// nothing changed. Note, I tested doing the above check using
390
// both this.syncdb and this.store, and this.store is orders of magnitude faster.
391
return;
0 commit comments