Skip to content

Commit

Permalink
fix clicking (i) causing fields to get focus
Browse files Browse the repository at this point in the history
  • Loading branch information
g3gg0 committed Aug 21, 2023
1 parent 26eeef3 commit a4f89f4
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions contrib/data/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,14 +324,14 @@
checked={this.state.isChecked}
onChange={this.handleCheckboxChange}
/>
{this.props.label}
<span className="tooltip">
&#9432;
<span className="tooltip-text">
{this.props.description}
</span>
</span>
</label>
{this.props.label}
<span className="tooltip">
&#9432;
<span className="tooltip-text">
{this.props.description}
</span>
</span>
</div>
);
}
Expand Down Expand Up @@ -375,15 +375,15 @@
value={this.state.value}
onChange={this.handleInputChange}
/>
&nbsp;
{this.props.label}
<span className="tooltip">
&#9432;
<span className="tooltip-text">
{this.props.description}
</span>
</span>
</label>
&nbsp;
{this.props.label}
<span className="tooltip">
&#9432;
<span className="tooltip-text">
{this.props.description}
</span>
</span>
</div>
);
}
Expand Down Expand Up @@ -427,15 +427,15 @@
value={this.state.value}
onChange={this.handleInputChange}
/>
&nbsp;
{this.props.label}
<span className="tooltip">
&#9432;
<span className="tooltip-text">
{this.props.description}
</span>
</span>
</label>
&nbsp;
{this.props.label}
<span className="tooltip">
&#9432;
<span className="tooltip-text">
{this.props.description}
</span>
</span>
</div>
);
}
Expand Down Expand Up @@ -489,15 +489,15 @@
onBlur={this.handleInputBlur}
onKeyPress={this.handleKeyPress}
/>
&nbsp;
{this.props.label}
<span className="tooltip">
&#9432;
<span className="tooltip-text">
{this.props.description}
</span>
</span>
</label>
&nbsp;
{this.props.label}
<span className="tooltip">
&#9432;
<span className="tooltip-text">
{this.props.description}
</span>
</span>
</div>
);
}
Expand Down

0 comments on commit a4f89f4

Please sign in to comment.