Commit 15810e0c authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '355122-bitbucket-importer-filter-text-doesn-t-fit' into 'master'

Update placeholder text on GitHub and Bitbucket Importer

See merge request gitlab-org/gitlab!82575
parents ae04587c 80c5f0dc
...@@ -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