From 2620ec52bbfedaff78cf0ba92545ebcbfa626cfa Mon Sep 17 00:00:00 2001 From: Zhiyuan Zheng Date: Sat, 13 Mar 2021 14:18:14 +0100 Subject: [PATCH] Fixed #55 --- src/components/Timeline/Shared/HeaderShared/Application.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Timeline/Shared/HeaderShared/Application.tsx b/src/components/Timeline/Shared/HeaderShared/Application.tsx index e9b8430f..c4a32cf2 100644 --- a/src/components/Timeline/Shared/HeaderShared/Application.tsx +++ b/src/components/Timeline/Shared/HeaderShared/Application.tsx @@ -24,6 +24,7 @@ const HeaderSharedApplication = React.memo( application.website && (await openLink(application.website)) }} style={[styles.application, { color: theme.secondary }]} + numberOfLines={1} > {t('shared.header.shared.application', { application: application.name @@ -36,6 +37,7 @@ const HeaderSharedApplication = React.memo( const styles = StyleSheet.create({ application: { + flex: 1, ...StyleConstants.FontStyle.S, marginLeft: StyleConstants.Spacing.S }