Skip to content

Commit

Permalink
Add "Cell ID" prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski authored and fcollonval committed Oct 26, 2023
1 parent 96e69a0 commit 72dd1bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nbdime/src/diff/widget/cell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class CellDiffWidget extends DiffPanel<CellDiffModel> {
header.addWidget(w);

Check warning on line 141 in packages/nbdime/src/diff/widget/cell.ts

View check run for this annotation

Codecov / codecov/patch

packages/nbdime/src/diff/widget/cell.ts#L138-L141

Added lines #L138 - L141 were not covered by tests
}
if (model.cellId && id !== null) {
let w = createWidget(id);
let w = createWidget(`Cell ID: ${id}`);
w.addClass(CELL_ID_CLASS);
FlexPanel.setGrow(w, 1);
header.addWidget(w);

Check warning on line 147 in packages/nbdime/src/diff/widget/cell.ts

View check run for this annotation

Codecov / codecov/patch

packages/nbdime/src/diff/widget/cell.ts#L144-L147

Added lines #L144 - L147 were not covered by tests
Expand Down

0 comments on commit 72dd1bd

Please sign in to comment.