Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gristlabs/grist-core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 28191b0257be780d590f4afc8b856dc0f00c7bc4
Choose a base ref
..
head repository: gristlabs/grist-core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9b177811a82eba30de797b0ed2ac4ce25d0ac2ac
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 test/nbrowser/AdminPanel.ts
2 changes: 1 addition & 1 deletion test/nbrowser/AdminPanel.ts
Original file line number Diff line number Diff line change
@@ -375,7 +375,7 @@ export function itemElement(itemId: string) {
}

export async function toggleItem(itemId: string) {
const header = itemElement(itemId);
const header = itemElement(itemId).find(`.test-admin-panel-item-name-${itemId}`);
await header.click();
await driver.sleep(500); // Time to expand or collapse.
return header;