On Monday, 26.1.2026, we will update the application's UI with changes to how the Output tab is displayed in Actor run detail.

Currently, when you link a dataset as run output in an output_schema.json like this:

"results": {
    "type": "string",
    "title": "Results",
    "template": "{{links.apiDefaultDatasetUrl}}/items?view=markdown"
},

It is displayed in UI like this:

CleanShot 2026-01-19 at 10.53.17@2x.png

The output selector displays the output title, and the table shows only the single view with data from the dataset. The user can switch to All fields, which removes the All fields button, replaces the selected item in the output selector and displays the whole dataset.

We received feedback that this complicates the UI a lot and forces developers to duplicate their views logic from the dataset schema into the output schema. Also, the switched output selector displays the dataset ID, and it “auto-magically” appears and disappears from the list of options, which is confusing.

On Monday, this will change. When displaying dataset as output we will always show the full view selector, so the only difference between

CleanShot 2026-01-19 at 10.54.22@2x.png

"results": {
    "type": "string",
    "title": "Results",
    "template": "{{links.apiDefaultDatasetUrl}}/items?view=markdown"
}

and

"results": {
    "type": "string",
    "title": "Results",
    "template": "{{links.apiDefaultDatasetUrl}}/items"
},

will be which view will be preselected in the view selector.

So if we use the example code above, the changed UI will look like this:

CleanShot 2026-01-19 at 10.58.36@2x.png

We will display the full view selector, and the view from the output definition will be preselected. If you do not provide the view it will default to the first item (in this case, it’s Text).

Our recommendation is to simplify your output schemas to only link to dataset items directly, with no view query param set, and leave it to users to pick the view they want.