You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should we always set the defaultValue on linkedQueryParam or only when the change comes from the query params.
Currently:
aParam=linkedQueryParam('a',{defaultValue: 1});
When a queryParam changes to null or undefined the value of aParam will be set to 1
When we set the value of aParam to null (aParam.set(null)), the value will be null.
The question is: should we always fallback to defaultValue, or only when queryParam changes?
The text was updated successfully, but these errors were encountered:
Should we always set the defaultValue on linkedQueryParam or only when the change comes from the query params.
Currently:
When
a
queryParam changes to null or undefined the value of aParam will be set to 1When we set the value of aParam to null (aParam.set(null)), the value will be null.
The question is: should we always fallback to defaultValue, or only when queryParam changes?
The text was updated successfully, but these errors were encountered: