Skip to content

Commit

Permalink
Merge pull request #42086 from s77rt/tags-view-header-buttons
Browse files Browse the repository at this point in the history
Fix tag view header buttons on native
  • Loading branch information
pecanoro authored May 14, 2024
2 parents 56ca21c + 17392b1 commit d78f9a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/workspace/tags/WorkspaceViewTagsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ function WorkspaceViewTagsPage({route}: WorkspaceViewTagsProps) {
shouldEnableMaxHeight
testID={WorkspaceViewTagsPage.displayName}
>
<HeaderWithBackButton title={currentTagListName}>{getHeaderButtons()}</HeaderWithBackButton>
<HeaderWithBackButton title={currentTagListName}>{!isSmallScreenWidth && getHeaderButtons()}</HeaderWithBackButton>
{isSmallScreenWidth && <View style={[styles.pl5, styles.pr5]}>{getHeaderButtons()}</View>}
<ConfirmModal
isVisible={isDeleteTagsConfirmModalVisible}
onConfirm={deleteTags}
Expand Down

0 comments on commit d78f9a8

Please sign in to comment.