fix(note_language): duplicate separators if no language selected

This commit is contained in:
Elian Doran 2025-03-05 22:16:31 +02:00
parent 15075c8626
commit ca757b20d5
No known key found for this signature in database

View File

@ -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;
}