Skip to content

Commit 63fdbbc

Browse files
committed
fix link and title for fetch
remove hover effect for doc tables
1 parent dd63b73 commit 63fdbbc

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

docs/javascript-api/mokapi-http/fetch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: Fetch – fetch( url, [opts] )
33
description: Use Mokapi's JavaScript API to send HTTP requests. Customize methods, headers, timeouts, and request data for testing and development.
44
---
5-
# fetch( url, [body], [opts] )
5+
# fetch( url, [opts] )
66

7-
The `fetch()` function provides a Promise-based interface for making HTTP requests in Mokapi’s JavaScript environment.
7+
The `fetch()` function provides a Promise-based interface for making HTTP requests in Mokapi’s JavaScript environment.
88
It works similarly to the browser’s Fetch API.
99

1010
| Parameter | Type | Description |

docs/javascript-api/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Functions to send HTTP requests within Mokapi scripts.
4242
| [patch( url, \[body\], \[args\] )](/docs/javascript-api/mokapi-http/patch.md) | Sends an HTTP PATCH request |
4343
| [delete( url, \[body\], \[args\] )](/docs/javascript-api/mokapi-http/delete.md) | Sends an HTTP DELETE request |
4444
| [options( url, \[body\], \[args\] )](/docs/javascript-api/mokapi-http/options.md) | Sends an HTTP OPTIONS request |
45-
| [fetch( url, \[opts\] )](/docs/javascript-api/mokapi-http/options.md) | Create an HTTP request using Fetch API |
45+
| [fetch( url, \[opts\] )](/docs/javascript-api/mokapi-http/fetch.md) | Create an HTTP request using Fetch API |
4646

4747
### mokapi/faker (Mock Data Generator)
4848

webui/src/views/DocsView.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,12 +272,9 @@ table td {
272272
line-height: 1.4;
273273
}
274274
275-
table tbody tr:hover {
276-
background-color: var(--color-background-mute);
277-
}
278-
279275
table.selectable tbody tr:hover {
280276
cursor: pointer;
277+
background-color: var(--color-background-mute);
281278
}
282279
283280
pre {

0 commit comments

Comments
 (0)