Skip to content

Commit 9990fa9

Browse files
committed
1 parent e95f414 commit 9990fa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ export class FoldedCellHint extends CellPart {
4646

4747
private getHiddenCellsLabel(num: number): string {
4848
if (num === 1) {
49-
return localize('hiddenCellsLabel', "1 cell hidden...");
49+
return localize('hiddenCellsLabel', "1 cell hidden") + '…';
5050
} else {
51-
return localize('hiddenCellsLabelPlural', "{0} cells hidden...", num);
51+
return localize('hiddenCellsLabelPlural', "{0} cells hidden", num) + '…';
5252
}
5353
}
5454

0 commit comments

Comments
 (0)