fix(my-joy-beta): remove filter input placeholder

fixes #1046
This commit is contained in:
Sara Vieira 2018-01-22 16:19:31 +01:00 committed by Sérgio Ramos
parent 0d207f01e8
commit 8c8dd1758d
2 changed files with 7 additions and 8 deletions

View File

@ -804,7 +804,7 @@ exports[`renders <List /> without throwing 1`] = `
disabled={false}
id="k"
onBlur={undefined}
placeholder="Search for name, state, tags, etc..."
placeholder=""
/>
</div>
</div>
@ -1855,7 +1855,7 @@ exports[`renders <List error /> without throwing 1`] = `
disabled={false}
id="t"
onBlur={undefined}
placeholder="Search for name, state, tags, etc..."
placeholder=""
/>
</div>
</div>
@ -3042,7 +3042,7 @@ exports[`renders <List instances /> without throwing 1`] = `
disabled={false}
id="z"
onBlur={undefined}
placeholder="Search for name, state, tags, etc..."
placeholder=""
/>
</div>
</div>
@ -5156,7 +5156,7 @@ exports[`renders <List instances selected /> without throwing 1`] = `
disabled={false}
id="J"
onBlur={undefined}
placeholder="Search for name, state, tags, etc..."
placeholder=""
/>
</div>
</div>
@ -7590,7 +7590,7 @@ exports[`renders <List instances selected=all /> without throwing 1`] = `
disabled={false}
id="T"
onBlur={undefined}
placeholder="Search for name, state, tags, etc..."
placeholder=""
/>
</div>
</div>
@ -10235,7 +10235,7 @@ exports[`renders <List instances selected=all allowedActions /> without throwing
disabled={false}
id="bd"
onBlur={undefined}
placeholder="Search for name, state, tags, etc..."
placeholder=""
/>
</div>
</div>
@ -11494,7 +11494,7 @@ exports[`renders <List loading /> without throwing 1`] = `
disabled={true}
id="q"
onBlur={undefined}
placeholder="Search for name, state, tags, etc..."
placeholder=""
/>
</div>
</div>

View File

@ -135,7 +135,6 @@ export const List = ({
<ToolbarForm
{...props}
searchLabel="Filter instances"
searchPlaceholder="Search for name, state, tags, etc..."
searchable={!_loading}
actionLabel="Create Instance"
onActionClick={() => history.push(`/instances/~create`)}