change(ui) - text changes
This commit is contained in:
parent
04e698e025
commit
3809ec4ed6
2 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@ function AuditSearchField(props: Props) {
|
|||
<Input
|
||||
name="searchQuery"
|
||||
// className="bg-white p-2 border border-gray-light rounded w-full pl-10"
|
||||
placeholder="Filter by Name"
|
||||
placeholder="Filter by name"
|
||||
onChange={write}
|
||||
icon="search"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ export default class SiteDropdown extends React.PureComponent {
|
|||
<Icon className={styles.drodownIcon} color="gray-light" name="chevron-down" size="16" />
|
||||
<div className={styles.menu}>
|
||||
<ul data-can-disable={disabled}>
|
||||
{!showCurrent && <li>{'Does not require domain selection.'}</li>}
|
||||
{!showCurrent && <li>{'Project selection is not applicable.'}</li>}
|
||||
{sites.map((site) => (
|
||||
<li key={site.id} onClick={() => this.switchSite(site.id)}>
|
||||
<Icon name="circle" size="8" marginRight="10" color={STATUS_COLOR_MAP[site.status]} />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue