Fix SPA scroll-to-top on navigation

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-09 05:51:13 +00:00
parent 0df844f77f
commit fa97880c6d

View File

@@ -512,7 +512,7 @@ class Spa {
try {
const opts = {
history: options.history || 'auto',
scroll: options.scroll || null,
scroll: 'scroll' in options ? options.scroll : undefined,
triggers: options.triggers !== false,
};