summaryrefslogtreecommitdiffstats
path: root/client/lib
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2019-03-22 13:10:31 +0200
committerLauri Ojansivu <x@xet7.org>2019-03-22 13:10:31 +0200
commitab4774a59a39b00ad529069317781e64c9e84c95 (patch)
treec443c618d731a38d6a09fc86bc540980d5e20bda /client/lib
parentb0d1ccc311d8cbfde56d91a1616927df47506aa1 (diff)
parent296349a83b5b36060db33b2a7b5692008c30ef82 (diff)
downloadwekan-ab4774a59a39b00ad529069317781e64c9e84c95.tar.gz
wekan-ab4774a59a39b00ad529069317781e64c9e84c95.tar.bz2
wekan-ab4774a59a39b00ad529069317781e64c9e84c95.zip
Merge branch 'edge' into meteor-1.8
Diffstat (limited to 'client/lib')
-rw-r--r--client/lib/popup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/lib/popup.js b/client/lib/popup.js
index 5b640f50..9abe48aa 100644
--- a/client/lib/popup.js
+++ b/client/lib/popup.js
@@ -184,7 +184,7 @@ window.Popup = new class {
// positives.
const title = TAPi18n.__(translationKey);
// when popup showed as full of small screen, we need a default header to clearly see [X] button
- const defaultTitle = Utils.isMiniScreen() ? 'Wekan' : false;
+ const defaultTitle = Utils.isMiniScreen() ? '' : false;
return title !== translationKey ? title : defaultTitle;
};
}