Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BugFix: Fix array query params not updating and fix query params flashing #170

Merged
merged 3 commits into from
Jan 6, 2023

Conversation

pleek91
Copy link
Contributor

@pleek91 pleek91 commented Jan 6, 2023

Description

Fixes two bugs. Also has the proxy throw an error if an invalid property is used rather than just silently failing.

Comment on lines +26 to +31
const update = async (): Promise<void> => {
const query = applyQueryOperations(route.query, operations)

operations.splice(0)
await router.push({ query })

router.push({ query })
operations.splice(0)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fixes the flashing issue

}

const query = applyQueryOperations(route.query, operations)

return query[property]
},
set(target, property, value) {
if (typeof property === 'symbol' || typeof value !== 'string') {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fixes arrays not being set.

@pleek91 pleek91 merged commit 151de67 into main Jan 6, 2023
@pleek91 pleek91 deleted the query-param-arrays-fix branch January 6, 2023 18:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants