From f0eae58df2c0d329730dc4df3657fc7725ac23f9 Mon Sep 17 00:00:00 2001 From: Sacha Froment Date: Wed, 9 Jan 2019 14:55:26 +0100 Subject: [PATCH] fix(android): fix text not diplayed on android Signed-off-by: Sacha Froment --- client/react-native/common/components/Library/EmptyList.js | 3 +-- .../common/components/Screens/Contacts/List/GenericList.js | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/client/react-native/common/components/Library/EmptyList.js b/client/react-native/common/components/Library/EmptyList.js index 8f41bdf54d..fec57c6d7d 100644 --- a/client/react-native/common/components/Library/EmptyList.js +++ b/client/react-native/common/components/Library/EmptyList.js @@ -64,7 +64,6 @@ export default class EmptyList extends PureComponent { onPress={onPress} style={{ fontSize: fontSize, - textTransform: 'uppercase', color: colors.white, display: 'flex', textAlign: 'center', @@ -73,7 +72,7 @@ export default class EmptyList extends PureComponent { justifyContent: 'center', }} > - {btnText} + {btnText.toUpperCase()} diff --git a/client/react-native/common/components/Screens/Contacts/List/GenericList.js b/client/react-native/common/components/Screens/Contacts/List/GenericList.js index c7bf66b0f0..ffab8472ca 100644 --- a/client/react-native/common/components/Screens/Contacts/List/GenericList.js +++ b/client/react-native/common/components/Screens/Contacts/List/GenericList.js @@ -47,7 +47,6 @@ class CondComponent extends PureComponent { - {I18n.t('contacts.add.title')} + {I18n.t('contacts.add.title').toUpperCase()}