From e9ad71abedc4b13208d3c42ce36e2997a2b77cd9 Mon Sep 17 00:00:00 2001 From: Gregory Kman Date: Wed, 15 Mar 2017 12:00:03 -0500 Subject: [PATCH 1/3] Update alerting.md Add missing `"` --- docs/sources/http_api/alerting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/http_api/alerting.md b/docs/sources/http_api/alerting.md index b58a177fecd..cc7ce4c2650 100644 --- a/docs/sources/http_api/alerting.md +++ b/docs/sources/http_api/alerting.md @@ -87,7 +87,7 @@ This API can also be used to create, update and delete alert notifications. { "alertId": 1, - "paused: true + "paused": true } **Example Response**: From f3cce7efc9c1eced48cc44a1a5a50b9726b6bf56 Mon Sep 17 00:00:00 2001 From: Pandurang Waghulde Date: Fri, 17 Mar 2017 12:57:52 +0530 Subject: [PATCH 2/3] typo fix for OpsGenie --- pkg/services/alerting/notifiers/opsgenie.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/services/alerting/notifiers/opsgenie.go b/pkg/services/alerting/notifiers/opsgenie.go index 742aeb922b6..6792702b539 100644 --- a/pkg/services/alerting/notifiers/opsgenie.go +++ b/pkg/services/alerting/notifiers/opsgenie.go @@ -30,7 +30,7 @@ func init() { label="Auto close incidents" label-class="width-14" checked="ctrl.model.settings.autoClose" - tooltip="Automatically close alerts in OpseGenie once the alert goes back to ok."> + tooltip="Automatically close alerts in OpsGenie once the alert goes back to ok."> `, From 5cb51631dbd977e122e221832a1876a60e3eb305 Mon Sep 17 00:00:00 2001 From: Andrii Skomorokhov Date: Fri, 17 Mar 2017 12:48:28 +0200 Subject: [PATCH 3/3] Fixed position of tooltip with description at graph. (#7854) --- public/app/features/panel/panel_directive.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/panel/panel_directive.ts b/public/app/features/panel/panel_directive.ts index d2708ff73bb..0482abc0437 100644 --- a/public/app/features/panel/panel_directive.ts +++ b/public/app/features/panel/panel_directive.ts @@ -160,6 +160,7 @@ module.directive('grafanaPanel', function($rootScope, $document) { classes: ctrl.error ? 'drop-error' : 'drop-help', openOn: 'hover', hoverOpenDelay: 100, + constrainToScrollParent: false, }); } }