> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qodo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Control findings visibility and expansion in pull requests

<Note>
  These configurations can also be set organization-wide in the [Qodo portal.](/code-review/get-started/configuration-overview/portal-configuration)
</Note>

<Note>These configuration options are not supported on Bitbucket Data Center.</Note>

You can control how many findings are surfaced in a review to avoid being overwhelmed on large pull requests.

This helps keep feedback focused and actionable, while still preserving full visibility.

* Only a subset of findings are shown by default
* Additional findings are not discarded
* Hidden findings can be viewed by expanding the section in the review summary

In addition to controlling the number of findings surfaced, you can also configure how findings are displayed and expanded in the review output.

To control how lower-severity findings collapse behind **View more** per action level, see [Control review verbosity](/code-review/review-verbosity).

### Number of findings shown before collapse

Control how many findings are shown before the rest collapse behind **“View all”**.

Example:

```bash theme={null}
[review_agent_ux]
finding_overflow_count = 3
```

Supported values:

* `none` – all findings collapsed
* `1`, `3` (default), `5` – number of findings shown before “View all”
* `all` – all findings expanded

### Number of resolved findings shown before collapse

Control how many **resolved findings** are shown before the rest collapse behind **“View all”**.

Example:

```bash theme={null}
[review_agent_ux]
resolved_overflow_count = 3
```

Supported values:

* `none`
* `1`, `3` (default), `5`
* `all`

### Default expanded sections in a finding

Control which sections of a finding are expanded by default when it is opened.

Example:

```bash theme={null}
[review_agent_ux]
expand_description = true
expand_code = true
expand_relevance = false
expand_evidence = false
expand_prompt = false
```

Values:

* `true` – section expanded by default
* `false` – section collapsed by default

Settings:

* `expand_description` – Description section (default: `true`)
* `expand_code` – Code section (default: `true`)
* `expand_relevance` – Relevance section (default: `false`)
* `expand_evidence` – Evidence section (default: `false`)
* `expand_prompt` – Agent prompt section (default: `false`)
