mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* Security: Update default content_security_policy_template - Add 'strict-dynamic' back to script-src - Add ws(s)://$ROOT_PATH to connect-src - Change onEvent to on-event in angular templates to fix CSP issues in firefox. - Add blob: to style-src
23 lines
723 B
TypeScript
23 lines
723 B
TypeScript
const template = `
|
|
<div class="graph-panel" ng-class="{'graph-panel--legend-right': ctrl.panel.legend.rightSide}">
|
|
<div class="graph-panel__chart" grafana-graph ng-dblclick="ctrl.zoomOut()">
|
|
</div>
|
|
|
|
<div class="graph-legend">
|
|
<div class="graph-legend-content" graph-legend></div>
|
|
</div>
|
|
<div ng-if="ctrl.contextMenuCtrl.isVisible">
|
|
<graph-context-menu
|
|
itemsGroup="ctrl.contextMenuCtrl.menuItemsSupplier()"
|
|
on-close="ctrl.onContextMenuClose"
|
|
getContextMenuSource="ctrl.contextMenuCtrl.getSource"
|
|
timeZone="ctrl.getTimeZone()"
|
|
x="ctrl.contextMenuCtrl.position.x"
|
|
y="ctrl.contextMenuCtrl.position.y"
|
|
></graph-context-menu>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
export default template;
|