Skip to content

Commit

Permalink
Adding the missing alt tag for waffle node type switcher svgs (#27070) (
Browse files Browse the repository at this point in the history
#27122)

* adding the missing alt tag

* making alt attribute empty
  • Loading branch information
bhavyarm authored Dec 13, 2018
1 parent efff714 commit 519f085
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,23 @@ export class WaffleNodeTypeSwitcher extends React.PureComponent<Props> {
<img
src="../plugins/infra/images/hosts.svg"
role="presentation"
alt=""
className="euiIcon euiIcon--large"
/>
</EuiKeyPadMenuItem>
<EuiKeyPadMenuItem label="Kubernetes" onClick={this.handleClick(InfraNodeType.pod)}>
<img
src="../plugins/infra/images/k8.svg"
role="presentation"
alt=""
className="euiIcon euiIcon--large"
/>
</EuiKeyPadMenuItem>
<EuiKeyPadMenuItem label="Docker" onClick={this.handleClick(InfraNodeType.container)}>
<img
src="../plugins/infra/images/docker.svg"
role="presentation"
alt=""
className="euiIcon euiIcon--large"
/>
</EuiKeyPadMenuItem>
Expand Down

0 comments on commit 519f085

Please sign in to comment.