Skip to content

Commit

Permalink
Fix: Category - add spacing between long category name and category s…
Browse files Browse the repository at this point in the history
…tatus
  • Loading branch information
dragnoir committed Mar 4, 2024
1 parent 4231ac9 commit 7a3fe07
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/workspace/categories/WorkspaceCategoriesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ function WorkspaceCategoriesPage({policyCategories, route}: WorkspaceCategoriesP
isSelected: !!selectedCategories[value.name],
rightElement: (
<View style={styles.flexRow}>
<Text style={[styles.disabledText, styles.alignSelfCenter]}>{value.enabled ? translate('workspace.common.enabled') : translate('workspace.common.disabled')}</Text>
<Text style={[styles.disabledText, styles.alignSelfCenter, styles.pl2]}>
{value.enabled ? translate('workspace.common.enabled') : translate('workspace.common.disabled')}
</Text>
<View style={[styles.p1, styles.pl2]}>
<Icon
src={Expensicons.ArrowRight}
Expand Down

0 comments on commit 7a3fe07

Please sign in to comment.