Skip to content

Commit

Permalink
Include account name in undelete pages (fixes stalwartlabs/mail-serve…
Browse files Browse the repository at this point in the history
  • Loading branch information
mdecimus committed Sep 27, 2024
1 parent c8bec4e commit c740949
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/pages/enterprise/undelete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,13 @@ pub fn UndeleteList() -> impl IntoView {
on_page_change=move |page: u32| {
use_navigate()(
&UrlBuilder::new("/manage/undelete")
.with_subpath(
params
.get()
.get("id")
.map(|s| s.as_str())
.unwrap_or_default(),
)
.with_parameter("page", page.to_string())
.finish(),
Default::default(),
Expand Down

0 comments on commit c740949

Please sign in to comment.