Commit 80c5f0dc authored by wortschi's avatar wortschi

Update placeholder text in import projects table

Changelog: changed
parent a3a63d3f
...@@ -137,7 +137,7 @@ export default { ...@@ -137,7 +137,7 @@ export default {
<gl-form-input <gl-form-input
data-qa-selector="githubish_import_filter_field" data-qa-selector="githubish_import_filter_field"
name="filter" name="filter"
:placeholder="__('Filter your repositories by name')" :placeholder="__('Filter by name')"
autofocus autofocus
size="lg" size="lg"
@keyup.enter="setFilter($event.target.value)" @keyup.enter="setFilter($event.target.value)"
......
...@@ -15646,9 +15646,6 @@ msgstr "" ...@@ -15646,9 +15646,6 @@ msgstr ""
msgid "Filter users" msgid "Filter users"
msgstr "" msgstr ""
msgid "Filter your repositories by name"
msgstr ""
msgid "Filter..." msgid "Filter..."
msgstr "" msgstr ""
......
...@@ -16,7 +16,7 @@ describe('ImportProjectsTable', () => { ...@@ -16,7 +16,7 @@ describe('ImportProjectsTable', () => {
const findFilterField = () => const findFilterField = () =>
wrapper wrapper
.findAllComponents(GlFormInput) .findAllComponents(GlFormInput)
.wrappers.find((w) => w.attributes('placeholder') === 'Filter your repositories by name'); .wrappers.find((w) => w.attributes('placeholder') === 'Filter by name');
const providerTitle = 'THE PROVIDER'; const providerTitle = 'THE PROVIDER';
const providerRepo = { const providerRepo = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment