Add back the default enabled features.
This commit is contained in:
parent
8fb439c98c
commit
03d737b9cf
|
@ -20,7 +20,12 @@ export const storageValues = {
|
||||||
deserialize: (input) => new Set(JSON.parse(input) as Feature[]),
|
deserialize: (input) => new Set(JSON.parse(input) as Feature[]),
|
||||||
serialize: (input) => JSON.stringify(Array.from(input)),
|
serialize: (input) => JSON.stringify(Array.from(input)),
|
||||||
key: Data.EnabledFeatures,
|
key: Data.EnabledFeatures,
|
||||||
value: new Set([]),
|
value: new Set([
|
||||||
|
Feature.BackToTop,
|
||||||
|
Feature.JumpToNewComment,
|
||||||
|
Feature.MarkdownToolbar,
|
||||||
|
Feature.UserLabels,
|
||||||
|
]),
|
||||||
storage: browser.storage.sync,
|
storage: browser.storage.sync,
|
||||||
}),
|
}),
|
||||||
[Data.KnownGroups]: createValue({
|
[Data.KnownGroups]: createValue({
|
||||||
|
|
Loading…
Reference in New Issue