Merge pull request #353 from typerqeo/fix-custom

fixed a bug with custom tests not getting leftToRight properly
This commit is contained in:
Jack 2020-09-11 13:10:28 +01:00 committed by GitHub
commit bd28303828
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -747,7 +747,7 @@ function addWord() {
? words[config.language]
: {
//borrow the direction of the current language
leftToRight: language.leftToRight,
leftToRight: words[config.language].leftToRight,
words: customText
};
const wordset = language.words;