details: https://code.tryton.org/tryton/commit/b7fb8e671bbe
branch: 7.8
user: Cédric Krier <[email protected]>
date: Tue Dec 16 17:15:40 2025 +0100
description:
Add title to notification label and description
This way user can get the full content if it overflows.
Closes #14430
(grafted from 79d06c448a6feb6e6575fbbc9328ecd819abc4fd)
diffstat:
sao/src/notification.js | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (16 lines):
diff -r 0b196acae791 -r b7fb8e671bbe sao/src/notification.js
--- a/sao/src/notification.js Tue Dec 16 01:10:47 2025 +0100
+++ b/sao/src/notification.js Tue Dec 16 17:15:40 2025 +0100
@@ -41,9 +41,11 @@
}).append(jQuery('<span/>', {
'class': 'notification-label',
'text': notification.label,
+ 'title': notification.label,
})).append(jQuery('<span/>', {
'class': 'notification-description',
- 'text': notification.description
+ 'text': notification.description,
+ 'title': notification.description,
}));
let link = jQuery('<a/>', {
'role': 'menuitem',