mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[6.0]fix create_index_pattern_method to handle no timefields (#13852)
This commit is contained in:
parent
1965422d47
commit
bcfb14a2dc
1 changed files with 3 additions and 1 deletions
|
@ -292,7 +292,9 @@ export function SettingsPageProvider({ getService, getPageObjects }) {
|
|||
await this.navigateTo();
|
||||
await this.clickKibanaIndices();
|
||||
await this.setIndexPatternField(indexPatternName);
|
||||
await this.selectTimeFieldOption(timefield);
|
||||
if (timefield) {
|
||||
await this.selectTimeFieldOption(timefield);
|
||||
}
|
||||
const createButton = await this.getCreateButton();
|
||||
await createButton.click();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue