Browse Source

Fix graph page for IE11 (#4148)

Signed-off-by: bege13mot <bege13mot@gmail.com>
pull/4149/head
Ivan Voronchihin 7 years ago committed by Brian Brazil
parent
commit
b3441cb0e7
  1. 90
      web/ui/bindata.go
  2. 2
      web/ui/static/js/graph/index.js

90
web/ui/bindata.go

File diff suppressed because one or more lines are too long

2
web/ui/static/js/graph/index.js

@ -262,7 +262,7 @@ Prometheus.Graph.prototype.initTypeahead = function(self) {
const source = queryHistory.isEnabled() ? pageConfig.queryHistMetrics.concat(pageConfig.allMetrics) : pageConfig.allMetrics;
self.expr.typeahead({
autoSelect: false,
source,
source: source,
items: "all",
matcher: function (item) {
// If we have result for current query, skip

Loading…
Cancel
Save