This commit is contained in:
2023-05-09 00:08:02 +02:00
parent 0785cf6a21
commit 0b875cee25
12 changed files with 35 additions and 36 deletions

View File

@@ -69,8 +69,8 @@ impl GetPaginationCallbackData for UpdateLogCallbackData {
fn get_pagination_callback_data(&self, target_page: u32) -> String {
let UpdateLogCallbackData { from, to, .. } = self;
UpdateLogCallbackData {
from: from.clone(),
to: to.clone(),
from: *from,
to: *to,
page: target_page,
}
.to_string()