From 36c5673cf02a129d69a9e85dbf5fb6cef959959b Mon Sep 17 00:00:00 2001 From: Quentin Tresontani Date: Sat, 7 Feb 2026 16:48:39 +0100 Subject: [PATCH] [Agent] Make AI-Generated content disclaimer clickable --- .../Troubleshooting/AgentTaskLogEntryList.Page.al | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryList.Page.al b/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryList.Page.al index 671f478a0f..3da2a68728 100644 --- a/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryList.Page.al +++ b/src/System Application/App/Agent/Troubleshooting/AgentTaskLogEntryList.Page.al @@ -97,18 +97,21 @@ page 4303 "Agent Task Log Entry List" ShowCaption = false; label(Empty) { - ApplicationArea = All; Caption = '', Locked = true; } } group(Right) { ShowCaption = false; - label(Disclaimer) + field(Disclaimer; AIGeneratedContentDisclaimerLbl) { - ApplicationArea = All; - Caption = 'AI-generated content may be incorrect.'; + ShowCaption = false; Style = Subordinate; + + trigger OnDrillDown() + begin + Hyperlink('https://go.microsoft.com/fwlink/?linkid=2349003'); + end; } } } @@ -230,6 +233,7 @@ page 4303 "Agent Task Log Entry List" end; var + AIGeneratedContentDisclaimerLbl: Label 'AI-generated content may be incorrect.'; IsFeedbackActionEnabled: Boolean; DetailsTxt: Text; TypeStyle: Text;