mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
fix(frontend): use tabs instead of pills for settings modal
This way the button don't look so strange and this is more like the class is intended. Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
3d3b96de6c
commit
eff6c53860
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ export const SettingsModal: React.FC<CommonModalProps> = ({ show, onHide }) => {
|
|||
titleI18nKey={'settings.title'}
|
||||
showCloseButton={true}>
|
||||
<Modal.Body>
|
||||
<Tabs navbar={false} variant={'pills'} defaultActiveKey={'global'}>
|
||||
<Tabs navbar={false} variant={'tabs'} defaultActiveKey={'global'}>
|
||||
<Tab title={t('settings.global.label')} eventKey={'global'}>
|
||||
<GlobalSettingsTabContent />
|
||||
</Tab>
|
||||
|
|
Loading…
Reference in a new issue