Update button text
This commit is contained in:
parent
3cd2c7ba40
commit
e1aefb9934
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ function PMOtherUsersTR(): JSX.Element {
|
|||
<>
|
||||
<Link to={`/viewStatistics/${projectName}/${username}`}>
|
||||
<Button
|
||||
text={`Total Time For ${username} In ${projectName}`}
|
||||
text={`Statistics: ${username}`}
|
||||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
|
|
|
@ -16,7 +16,7 @@ function PMProjectMembers(): JSX.Element {
|
|||
<>
|
||||
<Link to={`/PMtimeactivity/${projectName}`}>
|
||||
<Button
|
||||
text={`Total Time For ${projectName}`}
|
||||
text="Statistics"
|
||||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
|
|
|
@ -21,7 +21,7 @@ function UserViewTimeReportsPage(): JSX.Element {
|
|||
<>
|
||||
<Link to={`/viewStatistics/${projectName}/${username}`}>
|
||||
<Button
|
||||
text="Total Time In Project"
|
||||
text="Statistics"
|
||||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
|
|
Loading…
Reference in a new issue