mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix(templating): Another atempt at fixing #2534 (Init multi value template var used in repeat panel from url), fixes #2564
This commit is contained in:
@@ -138,7 +138,7 @@ function (angular, _, kbn) {
|
||||
option.selected = false;
|
||||
if (_.isArray(variable.current.value)) {
|
||||
for (y = 0; y < variable.current.value.length; y++) {
|
||||
value = variable.current.value[i];
|
||||
value = variable.current.value[y];
|
||||
if (option.value === value) {
|
||||
option.selected = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user