mirror of
https://github.com/nushell/nushell
synced 2024-12-28 05:53:09 +00:00
Revert ellipsis changes
This commit is contained in:
parent
877bbcd931
commit
cce5b5bb5e
1 changed files with 2 additions and 2 deletions
|
@ -97,9 +97,9 @@ impl TableView {
|
||||||
entries[row].truncate(max_num_of_columns);
|
entries[row].truncate(max_num_of_columns);
|
||||||
}
|
}
|
||||||
|
|
||||||
headers.push("…".to_string());
|
headers.push("...".to_string());
|
||||||
for row in 0..entries.len() {
|
for row in 0..entries.len() {
|
||||||
entries[row].push(("…".to_string(), "c")); // ellipsis is centred
|
entries[row].push(("...".to_string(), "c")); // ellipsis is centred
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue