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
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ exports[`renders ControlsTab 1`] = `
id="selectControlType"
>
<EuiSelect
aria-label="Select control type"
compressed={false}
fullWidth={false}
hasNoInitialSelection={false}
Expand Down Expand Up @@ -130,6 +131,7 @@ exports[`renders ControlsTab 1`] = `
id="addControl"
>
<EuiButton
aria-label="Add control"
color="primary"
data-test-subj="inputControlEditorAddBtn"
fill={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ export class ControlsTab extends Component {
]}
value={this.state.type}
onChange={evt => this.setState({ type: evt.target.value })}
aria-label="Select control type"
/>
</EuiFormRow>
</EuiFlexItem>
Expand All @@ -169,6 +170,7 @@ export class ControlsTab extends Component {
onClick={this.handleAddControl}
iconType="plusInCircle"
data-test-subj="inputControlEditorAddBtn"
aria-label="Add control"
>
Add
</EuiButton>
Expand Down