# Case list tab order

When a case is configured so that a case handler can be assigned the case list screen in the UI is divided into 3 tabs. These tabs - and their order - can be customized through the frontend code of an implementation.

The following tabs are created when case handlers are enabled:

* My cases
* Unassigned cases
* All cases

## Modifying the tabs in environment file

To customize which tabs are displayed and in what order, you will need to configure this in the `environment` file.

Here, the `ValtimoConfig` property is defined, and within it, it is possible to declare in the `visibleDossierListTabs` property the tabs you want to show and what order they should be displayed in.

### Example:

```typescript
export const environment: ValtimoConfig = {
    ...,
    visibleDossierListTabs: [DossierListTab.MINE, DossierListTab.OPEN, DossierListTab.ALL]
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.valtimo.nl/features/case/for-developers/customizing-case-list-tabs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
