Skip to content

Commit

Permalink
Merge pull request #50917 from rezkiy37/fix/49543-restrict-tag-rules-…
Browse files Browse the repository at this point in the history
…multiple-tags

Restrict the tag rules settings for multiple-level tags
  • Loading branch information
deetergp authored Oct 22, 2024
2 parents e74eb8e + 2f24bfc commit 8a05a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/workspace/tags/TagSettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function TagSettingsPage({route, navigation}: TagSettingsPageProps) {
/>
</OfflineWithFeedback>

{policy?.areRulesEnabled && canUseCategoryAndTagApprovers && (
{policy?.areRulesEnabled && canUseCategoryAndTagApprovers && !isMultiLevelTags && (
<>
<View style={[styles.mh5, styles.mv3, styles.pt3, styles.borderTop]}>
<Text style={[styles.textNormal, styles.textStrong, styles.mv3]}>{translate('workspace.tags.tagRules')}</Text>
Expand Down

0 comments on commit 8a05a74

Please sign in to comment.