Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 31 additions & 31 deletions src/extension/ui/setting/Setting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,37 +15,37 @@ export default function Setting() {
return (
<>
<Tabs defaultActiveKey="1" items={[
{
key: '1',
label: t('漫游设置'),
children: RoamingSetting({}),
},
{
key: '2',
label: t('B站弹幕'),
children: BiliDanmakuReplaceSetting({}),
},
{
key: '3',
label: t('弹弹Play'),
children: DanDanPlayReplaceSetting({}),
},
{
key: '4',
label: t('弹幕设定'),
children: DanmakuSetting({}),
},
{
key: '5',
label: t('播放设定'),
children: PlaySetting({}),
},
{
key: '6',
label: t('其它设定'),
children: OtherSetting({}),
},
]} onChange={onChange} />
{
key: '1',
label: t('漫游设置'),
children: <RoamingSetting />,
},
{
key: '2',
label: t('B站弹幕'),
children: <BiliDanmakuReplaceSetting />,
},
{
key: '3',
label: t('弹弹Play'),
children: <DanDanPlayReplaceSetting />,
},
{
key: '4',
label: t('弹幕设定'),
children: <DanmakuSetting />,
},
{
key: '5',
label: t('播放设定'),
children: <PlaySetting />,
},
{
key: '6',
label: t('其它设定'),
children: <OtherSetting />,
},
]} onChange={onChange} />
</>
)
}
Loading