Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
tagify
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
tagify
Merge requests
!146
Issue
#3519418
: Undefined array key "suggestions_dropdown"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3519418
: Undefined array key "suggestions_dropdown"
issue/tagify-3519418:3519418-undefined-array-key
into
1.2.x
Overview
0
Commits
2
Pipelines
2
Changes
1
Merged
Pierre BONNEFOI
requested to merge
issue/tagify-3519418:3519418-undefined-array-key
into
1.2.x
1 month ago
Overview
0
Commits
2
Pipelines
2
Changes
1
Expand
Closes
#3519418
0
0
Merge request reports
Compare
1.2.x
version 1
056c7556
1 month ago
1.2.x (base)
and
latest version
latest version
1af950f6
2 commits,
1 month ago
version 1
056c7556
1 commit,
1 month ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Controller/TagifyEntityAutocompleteController.php
+
1
−
1
Options
@@ -85,7 +85,7 @@ class TagifyEntityAutocompleteController extends ControllerBase {
// stored in the key/value store.
$selection_settings
=
$this
->
keyValue
(
'entity_autocomplete'
)
->
get
(
$selection_settings_key
,
FALSE
);
// Validate the autocomplete minimum length.
if
(
$input
===
''
&&
$selection_settings
[
'suggestions_dropdown'
])
{
if
(
$input
===
''
&&
isset
(
$selection_settings
[
'suggestions_dropdown'
])
&&
$selection_settings
[
'suggestions_dropdown'
])
{
return
new
JsonResponse
([]);
}
Loading