Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
Browse files Browse the repository at this point in the history
…-fix'
  • Loading branch information
kibanamachine committed Sep 5, 2023
1 parent b960129 commit a1c6678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/services/dashboard/panel_settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function DashboardCustomizePanelProvider({ getService, getPageObject }: F
public async clickToggleQuickMenuButton(open?: boolean) {
log.debug('clickToggleQuickMenuButton');
const button = await this.findToggleQuickMenuButton();
if (typeof open === 'undefined' || open !== await button.isSelected()) {
if (typeof open === 'undefined' || open !== (await button.isSelected())) {
await button.click();
}
}
Expand Down

0 comments on commit a1c6678

Please sign in to comment.