Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Kibana source code with Kibana X-Pack source code
Copyright 2012-2025 Elasticsearch B.V.
Copyright 2012-2026 Elasticsearch B.V.

---
Adapted from remote-web-worker, which was available under a "MIT" license.
Expand Down
4 changes: 3 additions & 1 deletion src/platform/test/functional/page_objects/index_editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ export class IndexEditorObject extends FtrService {

public async setCellValue(rowIndex: number, columnIndex: number, value: string): Promise<void> {
await this.testSubjects.click(`indexEditorCellValue-${rowIndex}-${columnIndex}`);
await this.testSubjects.setValue('indexEditorCellValueInput', value);
const input = await this.testSubjects.find('indexEditorCellValueInput');
await input.clearValueWithKeyboard();
await input.type(value, { charByChar: true });
await this.common.pressEnterKey();
}

Expand Down