mirror of
https://github.com/zadam/trilium.git
synced 2026-05-07 16:07:04 +02:00
Revert "feat(options/spellcheck): merge into single card"
This reverts commit 7b056fe1af.
This commit is contained in:
@@ -45,12 +45,3 @@
|
||||
.option-row.centered {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.option-row.full-width {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.option-row.full-width .option-row-input {
|
||||
flex-shrink: unset;
|
||||
}
|
||||
|
||||
@@ -8,15 +8,14 @@ interface OptionsRowProps {
|
||||
description?: string;
|
||||
children: VNode;
|
||||
centered?: boolean;
|
||||
fullWidth?: boolean;
|
||||
}
|
||||
|
||||
export default function OptionsRow({ name, label, description, children, centered, fullWidth }: OptionsRowProps) {
|
||||
export default function OptionsRow({ name, label, description, children, centered }: OptionsRowProps) {
|
||||
const id = useUniqueName(name);
|
||||
const childWithId = cloneElement(children, { id });
|
||||
|
||||
return (
|
||||
<div className={`option-row ${centered ? "centered" : ""} ${fullWidth ? "full-width" : ""}`}>
|
||||
<div className={`option-row ${centered ? "centered" : ""}`}>
|
||||
<div className="option-row-label">
|
||||
{label && <label for={id}>{label}</label>}
|
||||
{description && <small className="option-row-description">{description}</small>}
|
||||
|
||||
@@ -38,10 +38,9 @@ function ElectronSpellcheckSettings() {
|
||||
onChange={setSpellCheckEnabled}
|
||||
/>
|
||||
</OptionsRow>
|
||||
|
||||
{spellCheckEnabled && <SpellcheckLanguages />}
|
||||
</OptionsSection>
|
||||
|
||||
{spellCheckEnabled && <SpellcheckLanguages />}
|
||||
{spellCheckEnabled && <CustomDictionary />}
|
||||
</>
|
||||
);
|
||||
@@ -78,7 +77,7 @@ function SpellcheckLanguages() {
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<OptionsRow name="spell-check-languages" label={t("spellcheck.language_code_label")} fullWidth>
|
||||
<OptionsSection title={t("spellcheck.language_code_label")}>
|
||||
<CheckboxList
|
||||
values={availableLanguages}
|
||||
keyProperty="code" titleProperty="name"
|
||||
@@ -86,7 +85,7 @@ function SpellcheckLanguages() {
|
||||
onChange={setSelectedCodes}
|
||||
columnWidth="200px"
|
||||
/>
|
||||
</OptionsRow>
|
||||
</OptionsSection>
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user