mirror of
https://github.com/mue/mue.git
synced 2026-07-15 21:13:54 +02:00
fix: todo and photo packs
This commit is contained in:
@@ -51,7 +51,7 @@ function Navbar() {
|
||||
onChange={setShowRefreshOptions}
|
||||
/>
|
||||
<Checkbox
|
||||
name="todo"
|
||||
name="todoEnabled"
|
||||
text={variables.getMessage('widgets.navbar.todo.title')}
|
||||
category="navbar"
|
||||
/>
|
||||
|
||||
@@ -104,7 +104,7 @@ export default class Navbar extends PureComponent {
|
||||
{localStorage.getItem('notesEnabled') === 'true' ? (
|
||||
<Notes fontSize={this.state.zoomFontSize} />
|
||||
) : null}
|
||||
{localStorage.getItem('todo') === 'true' ? (
|
||||
{localStorage.getItem('todoEnabled') === 'true' ? (
|
||||
<Todo fontSize={this.state.zoomFontSize} />
|
||||
) : null}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user