mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-24 10:39:40 -06:00
modify
This commit is contained in:
@@ -479,7 +479,7 @@ const Configure = () => {
|
||||
color={theme.palette.primary.contrastTextTertiary}
|
||||
opacity={0.8}
|
||||
>
|
||||
The expected value to check in the response. Examples: HTTP status code, text in response body, or specific value from JSON data.
|
||||
The expected value to check in the response body content. Examples: specific text, HTML elements, or JSON values in the response.
|
||||
</Typography>
|
||||
</Stack>
|
||||
<Stack>
|
||||
|
||||
@@ -465,7 +465,7 @@ const CreateMonitor = () => {
|
||||
color={theme.palette.primary.contrastTextTertiary}
|
||||
opacity={0.8}
|
||||
>
|
||||
The expected value to check in the response. Examples: HTTP status code, text in response body, or specific value from JSON data.
|
||||
The expected value to check in the response body content. Examples: specific text, HTML elements, or JSON values in the response.
|
||||
</Typography>
|
||||
</Stack>
|
||||
<Stack>
|
||||
|
||||
@@ -263,6 +263,9 @@ class NetworkService {
|
||||
description: monitor.description,
|
||||
interval: monitor.interval,
|
||||
notifications: monitor.notifications,
|
||||
matchMethod: monitor.matchMethod,
|
||||
expectedValue: monitor.expectedValue,
|
||||
jsonPath: monitor.jsonPath,
|
||||
};
|
||||
return this.axiosInstance.put(`/monitors/${monitorId}`, updatedFields, {
|
||||
headers: {
|
||||
|
||||
Reference in New Issue
Block a user