mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 06:01:15 +08:00
Changed regex typeahead lookup, also works with literal regex patterns
This commit is contained in:
5
public/vendor/bootstrap/bootstrap.js
vendored
5
public/vendor/bootstrap/bootstrap.js
vendored
@ -2069,6 +2069,11 @@
|
||||
, move: function (e) {
|
||||
if (!this.shown) return
|
||||
|
||||
// grafana change, shift+left paranthesis
|
||||
if (e.shiftKey && e.keyCode === 40) {
|
||||
return;
|
||||
}
|
||||
|
||||
switch(e.keyCode) {
|
||||
case 9: // tab
|
||||
case 13: // enter
|
||||
|
Reference in New Issue
Block a user