Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
taxonomy_manager
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
taxonomy_manager
Merge requests
!67
Resolve
#3510691
"Fix broken tree 2"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Resolve
#3510691
"Fix broken tree 2"
issue/taxonomy_manager-3510691:3510691-fix-broken-tree-2
into
2.0.x
Overview
1
Commits
7
Pipelines
1
Changes
11
Closed
Tor F. Jacobsen
requested to merge
issue/taxonomy_manager-3510691:3510691-fix-broken-tree-2
into
2.0.x
3 months ago
Overview
1
Commits
7
Pipelines
1
Changes
11
Expand
Closes
#3510691
0
0
Merge request reports
Compare
2.0.x
2.0.x (base)
and
latest version
latest version
2291c388
7 commits,
3 months ago
11 files
+
44
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
js/tree.js
+
3
−
0
Options
@@ -30,6 +30,7 @@
// Bind the autocomplete widget to the input field
// @see https://api.jqueryui.com/autocomplete/#event-select
// cspell:ignore autocompleteselect
uiAutocomplete
.
bind
(
'
autocompleteselect
'
,
(
event
,
ui
)
=>
{
event
.
stopPropagation
();
const
tidMatch
=
ui
.
item
.
value
.
match
(
/
\([
0-9
]
*
\)
/g
);
@@ -120,7 +121,9 @@
keyboard
:
false
,
// Support keyboard navigation.
keyPathSeparator
:
'
/
'
,
// Used by node.getKeyPath() and tree.loadKeyPath().
minExpandLevel
:
1
,
// 1: root node is not collapsible
// cspell:ignore quicksearch
quicksearch
:
false
,
// Navigate to next node by typing the first letters.
// cspell:ignore hier
selectMode
:
2
,
// 1:single, 2:multi, 3:multi-hier
tabindex
:
0
,
// Whole tree behaves as one single control
titlesTabbable
:
false
,
// Node titles can receive keyboard focus
Loading