mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
color remainder fix
This commit is contained in:
parent
942c65224d
commit
e77953ad7f
1 changed files with 1 additions and 1 deletions
|
@ -764,7 +764,7 @@ impl<'a> Limbo<'a> {
|
|||
row.add_cell(
|
||||
Cell::new(content)
|
||||
.set_alignment(alignment)
|
||||
.fg(COLORS[idx & COLORS.len()]),
|
||||
.fg(COLORS[idx % COLORS.len()]),
|
||||
);
|
||||
}
|
||||
table.add_row(row);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue