[Rt-commit] rt 02/02: Put new added "User time worked" report to the end of the list
sunnavy
sunnavy at bestpractical.com
Wed Jul 14 08:36:53 EDT 2021
This is an automated email from the git hooks/post-receive script.
sunnavy pushed a commit to branch 4.4-trunk
in repository rt.
commit 03f99dce62414df69586e4aacdbb373b7a8ffa1e
Author: sunnavy <sunnavy at bestpractical.com>
AuthorDate: Wed Jul 14 03:07:58 2021 +0800
Put new added "User time worked" report to the end of the list
It looks better to not separte the two "... in a date range" reports.
---
share/html/Elements/Tabs | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/share/html/Elements/Tabs b/share/html/Elements/Tabs
index af227c3fab..091dc1ff45 100644
--- a/share/html/Elements/Tabs
+++ b/share/html/Elements/Tabs
@@ -649,16 +649,16 @@ my $build_main_nav = sub {
path => '/Reports/ResolvedByDates.html',
description => loc('Examine tickets resolved in a queue between two dates'),
);
- $reports->child( user_time =>
- title => loc('User time worked'),
- description => loc('User time worked'),
- path => '/Reports/TimeWorkedReport.html',
- );
$reports->child( createdindaterange =>
title => loc('Created in a date range'),
path => '/Reports/CreatedByDates.html',
description => loc('Examine tickets created in a queue between two dates'),
);
+ $reports->child( user_time =>
+ title => loc('User time worked'),
+ description => loc('User time worked'),
+ path => '/Reports/TimeWorkedReport.html',
+ );
if ($session{CurrentUser}->HasRight( Right => 'ShowArticlesMenu', Object => RT->System )) {
my $articles = Menu->child( articles => title => loc('Articles'), path => "/Articles/index.html");
--
To stop receiving notification emails like this one, please contact
sysadmin at bestpractical.com.
More information about the rt-commit
mailing list