mirror of
https://github.com/grafana/grafana.git
synced 2025-01-16 11:42:35 -06:00
JsonTree: fix jsonTree angular binding (#17608)
The API changed so it expects a numeric level rather than a boolean flag. Since 6.1 plugins using jsonTree just show an empty div
This commit is contained in:
parent
ed613194ac
commit
b950eebf99
@ -11,12 +11,18 @@ coreModule.directive('jsonTree', [
|
||||
rootName: '@',
|
||||
},
|
||||
link: (scope: any, elem) => {
|
||||
const jsonExp = new JsonExplorer(scope.object, 3, {
|
||||
let expansionLevel = scope.startExpanded;
|
||||
if (scope.startExpanded === 'true') {
|
||||
expansionLevel = 2;
|
||||
} else if (scope.startExpanded === 'false') {
|
||||
expansionLevel = 1;
|
||||
}
|
||||
const jsonObject = { [scope.rootName]: scope.object };
|
||||
const jsonExp = new JsonExplorer(jsonObject, expansionLevel, {
|
||||
animateOpen: true,
|
||||
});
|
||||
|
||||
const html = jsonExp.render(true);
|
||||
elem.replaceAll(html);
|
||||
elem.append(html);
|
||||
},
|
||||
};
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user