Add loader title hint for SPA navigation feedback

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-26 22:29:45 +00:00
parent b54484c7ed
commit f08d3de0c8
3 changed files with 57 additions and 4 deletions

View File

@@ -491,9 +491,11 @@ class Rsx {
}
// Collect any extra parameters for query string
// Filter out internal parameters that should not appear in URLs
const internal_params = ['_loader_title_hint'];
const query_params = {};
for (const key in params) {
if (!used_params[key]) {
if (!used_params[key] && !internal_params.includes(key)) {
query_params[key] = params[key];
}
}