We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 661f343 commit 80f0973Copy full SHA for 80f0973
src/ui/hash.ts
@@ -81,7 +81,7 @@ export class Hash {
81
_buildHashString = (params: URLSearchParams) => {
82
const entries = Array.from(params.entries());
83
if (entries.length === 0) return '';
84
- return entries.map(([key, value]) => value ? `${key}=${value}` : key).join('&');
+ return entries.map(([key, value]) => `${key}=${value}`).join('&');
85
};
86
87
_getCurrentHash = () => {
0 commit comments