Browse Source
Merge pull request #2899 from yefimov-andrey/alarm-widget-fix
fixing the activation of on-row event on details click
pull/2905/head
Igor Kulikov
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
ui/src/app/widget/lib/alarms-table-widget.js
|
|
|
@ -404,6 +404,9 @@ function AlarmsTableWidgetController($element, $scope, $filter, $mdMedia, $mdDia |
|
|
|
} |
|
|
|
|
|
|
|
function openAlarmDetails($event, alarm) { |
|
|
|
if ($event) { |
|
|
|
$event.stopPropagation(); |
|
|
|
} |
|
|
|
if (alarm && alarm.id) { |
|
|
|
var onShowingCallback = { |
|
|
|
onShowing: function(){} |
|
|
|
|