Increase width of language dropdown

This commit is contained in:
Ayush Kumar
2021-01-17 18:50:33 +05:30
parent 3c199d8c78
commit 2c8aaa27dd
3 changed files with 3 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ import SettingsStore from "../../../settings/SettingsStore";
import { _t } from "../../../languageHandler";
function languageMatchesSearchQuery(query, language) {
if (language.label.toUpperCase().startsWith(query.toUpperCase())) return true;
if (language.label.toUpperCase().includes(query.toUpperCase())) return true;
if (language.value.toUpperCase() === query.toUpperCase()) return true;
return false;
}