From 7661d3362b75232b153335e343608ab0e9fd51d6 Mon Sep 17 00:00:00 2001 From: Fredrik Karlsson Date: Tue, 15 Jun 2021 12:05:22 +0200 Subject: [PATCH] Bugfix set empty $suggestion in suggestTranslation() --- views/project.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/project.php b/views/project.php index 10a8e2c..cc33a5a 100644 --- a/views/project.php +++ b/views/project.php @@ -558,7 +558,7 @@ defval = _.get(this.project.values, [this.project.lang, key].join('.')); if (!navigator.onLine || !defval) { - this.$suggestion = null; + this.$suggestion = {key:null}; return; }