Set wysiwyg editor to enabled by default
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
17472cc54c
commit
f4368c8d8d
2 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ const defaultSettings = ImmutableMap({
|
|||
|
||||
systemFont: false,
|
||||
demetricator: false,
|
||||
wysiwyg: false,
|
||||
wysiwyg: true,
|
||||
|
||||
isDeveloper: false,
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ const settingsSchema = z.object({
|
|||
autoloadMore: z.boolean().catch(true),
|
||||
systemFont: z.boolean().catch(false),
|
||||
demetricator: z.boolean().catch(false),
|
||||
wysiwyg: z.boolean().catch(false),
|
||||
wysiwyg: z.boolean().catch(true),
|
||||
isDeveloper: z.boolean().catch(false),
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue