Fix auto-detect

This commit is contained in:
Piero Toffanin 2022-12-11 00:53:19 -05:00
parent 8be739a783
commit 4ab7e7d2f5

View file

@ -419,7 +419,7 @@ function handleLangsResponse(self, response) {
return;
}
self.langs.push({ name: "Auto Detect (Experimental)", code: "auto" })
self.langs.push({ name: "Auto Detect", code: "auto", targets: self.langs.map(l => l.code)})
const sourceLanguage = self.langs.find(l => l.code === self.getQueryParam("source"))
const targetLanguage = self.langs.find(l => l.code === self.getQueryParam("target"))