This is an automated email from the ASF dual-hosted git repository.

pvillard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 98b8010843 NIFI-15437 - UI - Move bulletin copy icon back, next to the 
severity in bulletin tooltip
98b8010843 is described below

commit 98b80108439ca9dabeb2343f3c50817d2ecee2f6
Author: Rob Fellows <[email protected]>
AuthorDate: Wed Jan 7 11:00:22 2026 -0500

    NIFI-15437 - UI - Move bulletin copy icon back, next to the severity in 
bulletin tooltip
    
    Signed-off-by: Pierre Villard <[email protected]>
    
    This closes #10740.
---
 .../app/ui/common/tooltips/bulletins-tip/bulletins-tip.component.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/tooltips/bulletins-tip/bulletins-tip.component.html
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/tooltips/bulletins-tip/bulletins-tip.component.html
index 2ab0d518e5..53f86ba576 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/tooltips/bulletins-tip/bulletins-tip.component.html
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/tooltips/bulletins-tip/bulletins-tip.component.html
@@ -21,7 +21,7 @@
             @if (bulletinEntity.canRead) {
                 <li>
                     <div class="inline-flex flex-wrap gap-x-1.5">
-                        <div class="inline-flex flex-wrap gap-x-1.5">
+                        <div class="inline-flex flex-wrap gap-x-1.5" 
[copy]="getBulletinCopyMessage(bulletinEntity)">
                             <div>{{ bulletinEntity.bulletin.timestamp }}</div>
                             @if (bulletinEntity.nodeAddress) {
                                 <div>{{ bulletinEntity.nodeAddress }}</div>
@@ -30,7 +30,7 @@
                                 {{ bulletinEntity.bulletin.level }}
                             </div>
                         </div>
-                        <pre class="whitespace-pre-wrap" 
[copy]="getBulletinCopyMessage(bulletinEntity)">{{
+                        <pre class="whitespace-pre-wrap">{{
                             bulletinEntity.bulletin.message
                         }}</pre>
                     </div>

Reply via email to