Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package icingaweb2 for openSUSE:Factory 
checked in at 2022-03-30 20:36:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/icingaweb2 (Old)
 and      /work/SRC/openSUSE:Factory/.icingaweb2.new.1900 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "icingaweb2"

Wed Mar 30 20:36:29 2022 rev:27 rq:966052 version:2.10.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/icingaweb2/icingaweb2.changes    2022-03-25 
21:55:28.506323987 +0100
+++ /work/SRC/openSUSE:Factory/.icingaweb2.new.1900/icingaweb2.changes  
2022-03-30 20:36:45.613357497 +0200
@@ -1,0 +2,7 @@
+Wed Mar 30 14:15:33 CEST 2022 - r...@suse.de
+
+- add 6498d8b035cbaa287d67a61b3f09310a191a5e10.patch
+  taken from upstream PR 4721 fixing mouseover for list items
+  to make checks selectable again 
+
+-------------------------------------------------------------------

New:
----
  6498d8b035cbaa287d67a61b3f09310a191a5e10.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ icingaweb2.spec ++++++
--- /var/tmp/diff_new_pack.LcFW6B/_old  2022-03-30 20:36:46.141357938 +0200
+++ /var/tmp/diff_new_pack.LcFW6B/_new  2022-03-30 20:36:46.145357942 +0200
@@ -29,6 +29,8 @@
 Source0:        
https://github.com/Icinga/icingaweb2/archive/v%{version}/%{name}-%{version}.tar.gz
 Source90:       README.SUSE
 Source99:       %{name}-rpmlintrc
+# PATCH-FIX-UPSTREAM Restore mouseover for list items on the dashboard #4721
+Patch1:         6498d8b035cbaa287d67a61b3f09310a191a5e10.patch
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -267,6 +269,7 @@
 
 %prep
 %setup -q -n %{name}-%{version}
+%patch1 -p1
 %if 0%{?use_selinux}
 mkdir selinux
 cp -p packages/selinux/icingaweb2.{fc,if,te} selinux

++++++ 6498d8b035cbaa287d67a61b3f09310a191a5e10.patch ++++++
>From 6498d8b035cbaa287d67a61b3f09310a191a5e10 Mon Sep 17 00:00:00 2001
From: Johannes Meyer <johannes.me...@icinga.com>
Date: Thu, 24 Mar 2022 11:25:39 +0100
Subject: [PATCH] actiontable.js: Don't ignore sub-containers

Just avoid that they are processed multiple times.

fixes #4710
---
 public/js/icinga/behavior/actiontable.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/public/js/icinga/behavior/actiontable.js 
b/public/js/icinga/behavior/actiontable.js
index 0fb2ed5962..0d4eee272d 100644
--- a/public/js/icinga/behavior/actiontable.js
+++ b/public/js/icinga/behavior/actiontable.js
@@ -348,8 +348,8 @@
          */
         this.loading = false;
 
-        this.on('rendered', '#main > .container', this.onRendered, this);
-        this.on('beforerender', '#main > .container', this.beforeRender, this);
+        this.on('rendered', '#main .container', this.onRendered, this);
+        this.on('beforerender', '#main .container', this.beforeRender, this);
         this.on('click', 'table.action tr[href], table.table-row-selectable 
tr[href]', this.onRowClicked, this);
     };
     ActionTable.prototype = new Icinga.EventListener();
@@ -437,7 +437,7 @@
         var _this = evt.data.self;
 
         if (evt.currentTarget !== container) {
-            // Nested containers are ignored
+            // Nested containers are not processed multiple times
             return;
         }
 
@@ -481,7 +481,7 @@
         var _this = evt.data.self;
 
         if (evt.currentTarget !== container) {
-            // Nested containers are ignored
+            // Nested containers are not processed multiple times
             return;
         }
 

Reply via email to