mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix(alerting): fixed reducer change issue, fixes #6241
This commit is contained in:
@@ -128,11 +128,9 @@ export function queryPartEditorDirective($compile, templateSrv) {
|
||||
}
|
||||
|
||||
$scope.showActionsMenu = function() {
|
||||
if ($scope.partActions.length === 0) {
|
||||
$scope.handleEvent({$event: {name: 'get-part-actions'}}).then(res => {
|
||||
$scope.partActions = res;
|
||||
});
|
||||
}
|
||||
$scope.handleEvent({$event: {name: 'get-part-actions'}}).then(res => {
|
||||
$scope.partActions = res;
|
||||
});
|
||||
};
|
||||
|
||||
$scope.triggerPartAction = function(action) {
|
||||
|
||||
Reference in New Issue
Block a user