Skip to content

Commit

Permalink
Add "Cell ID" prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Aug 13, 2023
1 parent 9f7ec87 commit a182964
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 @@ -129,7 +129,7 @@ class CellDiffWidget extends Panel {
header.addWidget(w);
}
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);
Expand Down

0 comments on commit a182964

Please sign in to comment.