mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 13:50:42 +08:00
fix(note_language): duplicate separators if no language selected
This commit is contained in:
parent
15075c8626
commit
ca757b20d5
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue