mirror of
https://github.com/zadam/trilium.git
synced 2025-10-28 16:56:34 +01:00
fix(note_language): duplicate separators if no language selected
This commit is contained in:
@@ -152,7 +152,11 @@ export default class NoteLanguageWidget extends NoteContextAwareWidget {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
locales.push("---"); // this will separate the list of languages from the "Configure languages" button.
|
// This will separate the list of languages from the "Configure languages" button.
|
||||||
|
// If there is at least one language.
|
||||||
|
if (locales.length > 2) {
|
||||||
|
locales.push("---");
|
||||||
|
}
|
||||||
return locales;
|
return locales;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user