Module: tools Branch: master Commit: 798cc33be70ad692adc5c9fe3e4580a5eb7d7149 URL: https://source.winehq.org/git/tools.git/?a=commit;h=798cc33be70ad692adc5c9fe...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Mar 7 12:52:21 2022 +0100
testbot/cgi: Add a tooltip on the 'required field' asterisks.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/ObjectModel/CGI/FormPage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/testbot/lib/ObjectModel/CGI/FormPage.pm b/testbot/lib/ObjectModel/CGI/FormPage.pm index 067d11b..9ea7f0f 100644 --- a/testbot/lib/ObjectModel/CGI/FormPage.pm +++ b/testbot/lib/ObjectModel/CGI/FormPage.pm @@ -305,7 +305,7 @@ sub GenerateRequired($$) if ($PropertyDescriptor->GetIsRequired()) { $self->{HasRequired} = 1; - print " <span class='Required'>*</span>"; + print " <a class='Required' title='Required field'>*</a>"; } }