details: https://code.tryton.org/tryton/commit/79d06c448a6f
branch: default
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
diffstat:
sao/src/notification.js | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (16 lines):
diff -r e6effcf7530b -r 79d06c448a6f 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',