minor fixes
This commit is contained in:
parent
987dae9b2d
commit
db0ce2f6f7
@ -91,12 +91,12 @@ function Header({ children }) {
|
|||||||
{
|
{
|
||||||
title: t('Header:About'),
|
title: t('Header:About'),
|
||||||
icon: 'info',
|
icon: 'info',
|
||||||
onClick: () => showAboutModal(),
|
onClick: showAboutModal,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: t('Header:Preferences'),
|
title: t('Header:Preferences'),
|
||||||
icon: 'settings',
|
icon: 'settings',
|
||||||
onClick: () => showPreferencesModal(),
|
onClick: showPreferencesModal,
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -45,11 +45,11 @@ const PreferencesDropdown = () => {
|
|||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
list={[
|
list={[
|
||||||
{ title: 'About', icon: 'info', onClick: () => showAboutModal() },
|
{ title: 'About', icon: 'info', onClick: showAboutModal },
|
||||||
{
|
{
|
||||||
title: 'Preferences',
|
title: 'Preferences',
|
||||||
icon: 'settings',
|
icon: 'settings',
|
||||||
onClick: () => showPreferencesModal(),
|
onClick: showPreferencesModal,
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user