aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-09-05 12:02:56 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-09-05 12:02:56 +0200
commit2e6902a0ef00a1e07ebabce3a2f61e6efc92c726 (patch)
tree0d4dc208047d475753202e10f0036186a8bcc59c /src/features
parentRevert "create test build" (diff)
downloadferdium-app-2e6902a0ef00a1e07ebabce3a2f61e6efc92c726.tar.gz
ferdium-app-2e6902a0ef00a1e07ebabce3a2f61e6efc92c726.tar.zst
ferdium-app-2e6902a0ef00a1e07ebabce3a2f61e6efc92c726.zip
polish todo preview text
Diffstat (limited to 'src/features')
-rw-r--r--src/features/todos/components/TodosWebview.js4
-rw-r--r--src/features/todos/store.js1
2 files changed, 3 insertions, 2 deletions
diff --git a/src/features/todos/components/TodosWebview.js b/src/features/todos/components/TodosWebview.js
index fa530daed..44c94a3ff 100644
--- a/src/features/todos/components/TodosWebview.js
+++ b/src/features/todos/components/TodosWebview.js
@@ -17,7 +17,7 @@ const CLOSE_TODOS_BUTTON_SIZE = 35;
17const messages = defineMessages({ 17const messages = defineMessages({
18 premiumInfo: { 18 premiumInfo: {
19 id: 'feature.todos.premium.info', 19 id: 'feature.todos.premium.info',
20 defaultMessage: '!!!The Franz Todos Preview is currently only available for Franz Premium accounts.', 20 defaultMessage: '!!!Franz Todos are available to premium users now!',
21 }, 21 },
22 upgradeCTA: { 22 upgradeCTA: {
23 id: 'feature.todos.premium.upgrade', 23 id: 'feature.todos.premium.upgrade',
@@ -25,7 +25,7 @@ const messages = defineMessages({
25 }, 25 },
26 rolloutInfo: { 26 rolloutInfo: {
27 id: 'feature.todos.premium.rollout', 27 id: 'feature.todos.premium.rollout',
28 defaultMessage: '!!!Franz Todos will be available to everyone soon.', 28 defaultMessage: '!!!Everyone else will have to wait a little longer.',
29 }, 29 },
30}); 30});
31 31
diff --git a/src/features/todos/store.js b/src/features/todos/store.js
index 5c6abff4c..4691c90ea 100644
--- a/src/features/todos/store.js
+++ b/src/features/todos/store.js
@@ -30,6 +30,7 @@ export default class TodoStore extends FeatureStore {
30 } 30 }
31 31
32 @computed get isTodosPanelVisible() { 32 @computed get isTodosPanelVisible() {
33 console.log('isTodosPanelVisible', 'delayAppState.isDelayAppScreenVisible', delayAppState.isDelayAppScreenVisible);
33 if (delayAppState.isDelayAppScreenVisible) return false; 34 if (delayAppState.isDelayAppScreenVisible) return false;
34 if (this.settings.isTodosPanelVisible === undefined) return DEFAULT_TODOS_VISIBLE; 35 if (this.settings.isTodosPanelVisible === undefined) return DEFAULT_TODOS_VISIBLE;
35 36