Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use observer cell for get latest outputs #70

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/libro-jupyter/src/components/cell-execution-tip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function CellExecutionTip({ cell }: { cell: CellView }) {
const [, setCurrentTime] = useState<number>();
const observableCell = useObserve(cell);

if (!ExecutableCellView.is(cell)) {
if (!ExecutableCellView.is(observableCell)) {
return null;
}

Expand All @@ -38,7 +38,7 @@ export function CellExecutionTip({ cell }: { cell: CellView }) {
.kernelExecuting;
const executionInfo = parseExecutionInfoFromModel(cell.model);

const output = cell.outputArea.outputs;
const output = observableCell.outputArea.outputs;
const existOutput = output && output.length !== 0;

const waitingExecute = isWaitingExecute(observableCell.model);
Expand Down
Loading