Fix duplicate entry on new pages in paginator
This commit is contained in:
parent
2b71285af0
commit
a4ec53e0cf
|
@ -35,9 +35,10 @@ pub fn paginator(input: Vec<String>, chunk_size: usize, join_string: String) ->
|
||||||
if part.chars().count() + i.chars().count() + filler >= chunk_size {
|
if part.chars().count() + i.chars().count() + filler >= chunk_size {
|
||||||
result.push(part);
|
result.push(part);
|
||||||
part = i.to_string();
|
part = i.to_string();
|
||||||
|
} else {
|
||||||
|
part.push_str(&join_string);
|
||||||
|
part.push_str(&i.to_string());
|
||||||
}
|
}
|
||||||
part.push_str(&join_string);
|
|
||||||
part.push_str(&i.to_string());
|
|
||||||
}
|
}
|
||||||
result.push(part);
|
result.push(part);
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in a new issue