-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
feat: 🎸 added option to handle prev/next button in the browser #31
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -50,8 +50,8 @@ export class QueryParamDef<QueryParams = any> { | |||||
return serializedValue === '[object Object]' ? JSON.stringify(controlValue) : serializedValue; | ||||||
} | ||||||
|
||||||
parse(queryParamValue: string) { | ||||||
if (this.parser) { | ||||||
parse(queryParamValue: string | null) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do not pass null(undefined) values to custom parser function. Otherwise it causes breaking changes There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure I understand your comment, why do you need this change? |
||||||
if (this.parser && queryParamValue != null) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
return this.parser(queryParamValue); | ||||||
} | ||||||
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
When using
updateOn: 'submit'
, need to clear form controls to prev stateThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why removed? can you please elaborate? I don't understand from your comment