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 vidartf committed Sep 8, 2023
1 parent cc3013f commit 0c721b5
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 @@ -126,7 +126,7 @@ export class CellDiffWidget extends Panel {
header.addWidget(w);

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

View check run for this annotation

Codecov / codecov/patch

packages/nbdime/src/diff/widget/cell.ts#L123-L126

Added lines #L123 - L126 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 132 in packages/nbdime/src/diff/widget/cell.ts

View check run for this annotation

Codecov / codecov/patch

packages/nbdime/src/diff/widget/cell.ts#L129-L132

Added lines #L129 - L132 were not covered by tests
Expand Down

0 comments on commit 0c721b5

Please sign in to comment.