Add type="button" to buttons
This commit is contained in:
parent
a49cfc9f01
commit
855dccdfa4
4 changed files with 6 additions and 0 deletions
|
@ -17,12 +17,14 @@ function UserEditTimeReportPage(): JSX.Element {
|
|||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
type="button"
|
||||
/>
|
||||
<Button
|
||||
text="Back"
|
||||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
type="button"
|
||||
/>
|
||||
</>
|
||||
);
|
||||
|
|
|
@ -18,6 +18,7 @@ function UserNewTimeReportPage(): JSX.Element {
|
|||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
type="button"
|
||||
/>
|
||||
<Link to="/project">
|
||||
<Button
|
||||
|
@ -25,6 +26,7 @@ function UserNewTimeReportPage(): JSX.Element {
|
|||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
type="button"
|
||||
/>
|
||||
</Link>
|
||||
</>
|
||||
|
|
|
@ -27,6 +27,7 @@ function UserProjectPage(): JSX.Element {
|
|||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
type="button"
|
||||
/>
|
||||
</Link>
|
||||
</>
|
||||
|
|
|
@ -11,6 +11,7 @@ function UserViewTimeReportsPage(): JSX.Element {
|
|||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
type="button"
|
||||
/>
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue