Get all first depth fields in the table and the board (#11650)

After discussing it with the team, we now want to query all fields in
the table and the board by default. Feeding the cache with exhaustive
data will make the side panel's life easier, as it needs all the record
fields to determine the actions to enable.
This commit is contained in:
Baptiste Devessier
2025-04-22 16:45:36 +02:00
committed by GitHub
parent 0b7024c94a
commit efab98a8f8
7 changed files with 113 additions and 45 deletions

View File

@ -40,9 +40,9 @@ test('The workflow run visualizer shows the executed draft version without the l
await page.goto(executionPageUrl!);
const workflowRunName = page.getByText(
`#1 - ${workflowVisualizer.workflowName}`,
);
const workflowRunName = page
.getByText(`#1 - ${workflowVisualizer.workflowName}`)
.nth(1);
await expect(workflowRunName).toBeVisible();