disable history recording to prevent re-send action on history navigation

This commit is contained in:
yggverse 2025-02-02 01:03:01 +02:00
parent bbcc3014cc
commit eb6f8bac91
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ impl Response for Box {
base.to_string_partial(UriHideFlags::QUERY),
Uri::escape_string(&form.text(), None, false),
)),
true,
false, // prevent re-send on history navigation
);
}
});

View file

@ -65,7 +65,7 @@ impl Sensitive for Box {
base.to_string_partial(UriHideFlags::QUERY),
Uri::escape_string(&form.password_entry_row.text(), None, false),
)),
true,
false, // prevent re-send on history navigation
);
}
});