Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
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
drupal
Merge requests
!3582
Issue
#2784233
: Allow multiple vocabularies in the taxonomy filter
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#2784233
: Allow multiple vocabularies in the taxonomy filter
issue/drupal-2784233:2784233-multiple-vocabularies
into
11.x
Overview
4
Commits
5
Pipelines
6
Changes
17
Open
Qiangjun Ran
requested to merge
issue/drupal-2784233:2784233-multiple-vocabularies
into
11.x
2 years ago
Overview
2
Commits
5
Pipelines
6
Changes
17
Expand
0
0
Merge request reports
Compare
11.x
version 18
f5a7ec5d
8 months ago
version 17
c4af6be1
8 months ago
version 16
1f3427e7
8 months ago
version 15
27a75185
11 months ago
version 14
28e16f18
11 months ago
version 13
c2a4e28b
11 months ago
version 12
c2a4e28b
2 years ago
version 11
2549fff9
2 years ago
version 10
389f4833
2 years ago
version 9
99f6d252
2 years ago
version 8
1dd21482
2 years ago
version 7
2761a841
2 years ago
version 6
b250e82e
2 years ago
version 5
0c016a81
2 years ago
version 4
fc2b4524
2 years ago
version 3
9c5c2494
2 years ago
version 2
e7b0106e
2 years ago
version 1
ca7bcb7a
2 years ago
11.x (base)
and
latest version
latest version
2423d9b5
5 commits,
8 months ago
version 18
f5a7ec5d
4 commits,
8 months ago
version 17
c4af6be1
3 commits,
8 months ago
version 16
1f3427e7
2 commits,
8 months ago
version 15
27a75185
1 commit,
11 months ago
version 14
28e16f18
1 commit,
11 months ago
version 13
c2a4e28b
11 commits,
11 months ago
version 12
c2a4e28b
11 commits,
2 years ago
version 11
2549fff9
11 commits,
2 years ago
version 10
389f4833
10 commits,
2 years ago
version 9
99f6d252
10 commits,
2 years ago
version 8
1dd21482
10 commits,
2 years ago
version 7
2761a841
10 commits,
2 years ago
version 6
b250e82e
9 commits,
2 years ago
version 5
0c016a81
6 commits,
2 years ago
version 4
fc2b4524
5 commits,
2 years ago
version 3
9c5c2494
3 commits,
2 years ago
version 2
e7b0106e
2 commits,
2 years ago
version 1
ca7bcb7a
1 commit,
2 years ago
17 files
+
429
−
82
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
core/modules/node/src/Plugin/views/wizard/Node.php
+
1
−
1
Options
@@ -172,7 +172,7 @@ protected function defaultDisplayFiltersUser(array $form, FormStateInterface $fo
'table'
=>
'taxonomy_index'
,
'field'
=>
'tid'
,
'value'
=>
$tids
,
'vid'
=>
$vid
,
'vid
s
'
=>
[
$vid
]
,
'plugin_id'
=>
'taxonomy_index_tid'
,
];
// If the user entered more than one valid term in the autocomplete
Loading