mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-18 01:14:22 +02:00
disable single attribute per line
This commit is contained in:
@@ -244,10 +244,5 @@ export const AudioSettings = ({ hasFancyAudio }: { hasFancyAudio: boolean }) =>
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<SettingsSection
|
||||
divider={!hasFancyAudio}
|
||||
options={audioOptions}
|
||||
/>
|
||||
);
|
||||
return <SettingsSection divider={!hasFancyAudio} options={audioOptions} />;
|
||||
};
|
||||
|
||||
@@ -215,10 +215,5 @@ export const LyricSettings = () => {
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<SettingsSection
|
||||
divider={false}
|
||||
options={lyricOptions}
|
||||
/>
|
||||
);
|
||||
return <SettingsSection divider={false} options={lyricOptions} />;
|
||||
};
|
||||
|
||||
@@ -218,11 +218,7 @@ export const MpvSettings = () => {
|
||||
),
|
||||
description: (
|
||||
<Stack gap={0}>
|
||||
<Text
|
||||
isMuted
|
||||
isNoSelect
|
||||
size="sm"
|
||||
>
|
||||
<Text isMuted isNoSelect size="sm">
|
||||
{t('setting.mpvExtraParameters', {
|
||||
context: 'description',
|
||||
postProcess: 'sentenceCase',
|
||||
|
||||
@@ -86,10 +86,5 @@ export const TranscodeSettings = () => {
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<SettingsSection
|
||||
divider
|
||||
options={transcodeOptions}
|
||||
/>
|
||||
);
|
||||
return <SettingsSection divider options={transcodeOptions} />;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user