mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Forms: Remove usage of gf-form textarea and help icons (#70561)
This commit is contained in:
@@ -21,9 +21,7 @@ export const LdapUserGroups = ({ groups, showAttributeMapping }: Props) => {
|
||||
<th>
|
||||
Organization
|
||||
<Tooltip placement="top" content="Only the first match for an Organization will be used" theme={'info'}>
|
||||
<span className="gf-form-help-icon">
|
||||
<Icon name="info-circle" />
|
||||
</span>
|
||||
<Icon name="info-circle" />
|
||||
</Tooltip>
|
||||
</th>
|
||||
<th>Role</th>
|
||||
@@ -39,14 +37,10 @@ export const LdapUserGroups = ({ groups, showAttributeMapping }: Props) => {
|
||||
<td>{group.orgRole}</td>
|
||||
) : (
|
||||
<td>
|
||||
<span className="text-warning">
|
||||
No match
|
||||
<Tooltip placement="top" content="No matching groups found" theme={'info'}>
|
||||
<span className="gf-form-help-icon">
|
||||
<Icon name="info-circle" />
|
||||
</span>
|
||||
</Tooltip>
|
||||
</span>
|
||||
<span className="text-warning">No match</span>
|
||||
<Tooltip placement="top" content="No matching groups found" theme={'info'}>
|
||||
<Icon name="info-circle" />
|
||||
</Tooltip>
|
||||
</td>
|
||||
)}
|
||||
</tr>
|
||||
|
||||
@@ -33,14 +33,10 @@ export const LdapUserTeams = ({ teams, showAttributeMapping }: Props) => {
|
||||
<>
|
||||
<td />
|
||||
<td>
|
||||
<div className="text-warning">
|
||||
No match
|
||||
<Tooltip placement="top" content="No matching teams found" theme={'info'}>
|
||||
<span className="gf-form-help-icon">
|
||||
<Icon name="info-circle" />
|
||||
</span>
|
||||
</Tooltip>
|
||||
</div>
|
||||
<span className="text-warning">No match</span>
|
||||
<Tooltip placement="top" content="No matching teams found" theme={'info'}>
|
||||
<Icon name="info-circle" />
|
||||
</Tooltip>
|
||||
</td>
|
||||
</>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user