diff options
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/bg/js/deinflector.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/bg/js/deinflector.js b/ext/bg/js/deinflector.js index 6e480068..6484f953 100644 --- a/ext/bg/js/deinflector.js +++ b/ext/bg/js/deinflector.js @@ -90,7 +90,7 @@ class Deinflection {                  source: this.term,                  rules: this.rules,                  definitions: this.definitions, -                reasons: [this.reason] +                reasons: this.reason.length > 0 ? [this.reason] : []              }];          } |