mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
The recently added numberOfLines={1} on the gutter <Text> wraps the
content in display:-webkit-box; overflow:hidden on web, where a plain
ASCII space collapses to zero height. That shifted every line number up
by one row, leaving "1" next to the hunk marker. Use a non-breaking
space so the cell keeps its line height.
19 lines
704 B
TypeScript
19 lines
704 B
TypeScript
interface HighlightLikeToken {
|
|
text: string;
|
|
}
|
|
|
|
// Preserve row height when a gutter or diff cell is intentionally blank.
|
|
// Non-breaking space because the gutter <Text> uses numberOfLines={1}, which
|
|
// collapses a plain ASCII space to zero height on web.
|
|
export function formatDiffGutterText(lineNumber: number | null): string {
|
|
return lineNumber == null ? "\u00A0" : String(lineNumber);
|
|
}
|
|
|
|
export function formatDiffContentText(content: string | null | undefined): string {
|
|
return content && content.length > 0 ? content : " ";
|
|
}
|
|
|
|
export function hasVisibleDiffTokens(tokens: HighlightLikeToken[] | null | undefined): boolean {
|
|
return Boolean(tokens?.some((token) => token.text.length > 0));
|
|
}
|