Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f3533f1

Browse filesBrowse files
authored
Merge pull request #321 from autogun/enable_search_on_multiselect
Enable searchbox support on multiselect combobox
2 parents e81bffa + 7ff1063 commit f3533f1
Copy full SHA for f3533f1

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎web-src/src/common/components/combobox.vue‎

Copy file name to clipboardExpand all lines: web-src/src/common/components/combobox.vue
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
4949
computed: {
5050
searchEnabled() {
51-
return !this.disabled && !this.config.multiselect && (this.options.length > 10);
51+
return !this.disabled && (this.options.length > 10);
5252
}
5353
},
5454
@@ -275,6 +275,6 @@
275275
background-color: white;
276276
position: sticky;
277277
top: 0;
278+
z-index: 1;
278279
}
279280
</style>
280-

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.