diff --git a/materialious/src/lib/bookmarklet.ts b/materialious/src/lib/bookmarklet.ts index fd137a68..da51299a 100644 --- a/materialious/src/lib/bookmarklet.ts +++ b/materialious/src/lib/bookmarklet.ts @@ -124,7 +124,7 @@ export function bookmarkletSaveToUrl(): string { persistedStores.forEach(store => { let value = get(store.store); - if (value) { + if (value !== null) { url.searchParams.set(store.name, value.toString()); } });