Skip to content

Wishful thinking #2672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/views/tenant/administration/AlertWizard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
]}
name="logbook"
placeholder={'Select a log source'}
label="Select the log you which to receive the alert for"
label="Select the log you wish to receive the alert for"
validate={required}
/>
</CCol>
Expand All @@ -221,7 +221,7 @@
{(props) => {
return (
<RFFSelectSearch
values={getAuditLogSchema(props.values?.logbook?.value)}

Check warning on line 224 in src/views/tenant/administration/AlertWizard.jsx

View workflow job for this annotation

GitHub Actions / NPM Install and Build (16.x, ubuntu-latest)

'values' is missing in props validation

Check warning on line 224 in src/views/tenant/administration/AlertWizard.jsx

View workflow job for this annotation

GitHub Actions / NPM Install and Build (16.x, ubuntu-latest)

'values.logbook' is missing in props validation

Check warning on line 224 in src/views/tenant/administration/AlertWizard.jsx

View workflow job for this annotation

GitHub Actions / NPM Install and Build (16.x, ubuntu-latest)

'values.logbook.value' is missing in props validation
name={`conditions.${i}.Property`}
placeholder={'Select a property to alert on'}
label="When property"
Expand Down Expand Up @@ -254,7 +254,7 @@
{(props) => {
return (
<>
{props.values?.conditions?.[i]?.Property?.value ===

Check warning on line 257 in src/views/tenant/administration/AlertWizard.jsx

View workflow job for this annotation

GitHub Actions / NPM Install and Build (16.x, ubuntu-latest)

'values' is missing in props validation

Check warning on line 257 in src/views/tenant/administration/AlertWizard.jsx

View workflow job for this annotation

GitHub Actions / NPM Install and Build (16.x, ubuntu-latest)

'values.conditions' is missing in props validation

Check warning on line 257 in src/views/tenant/administration/AlertWizard.jsx

View workflow job for this annotation

GitHub Actions / NPM Install and Build (16.x, ubuntu-latest)

'values.conditions[].Property' is missing in props validation

Check warning on line 257 in src/views/tenant/administration/AlertWizard.jsx

View workflow job for this annotation

GitHub Actions / NPM Install and Build (16.x, ubuntu-latest)

'values.conditions[].Property.value' is missing in props validation
'String' && (
<RFFCFormInput
name={`conditions.${i}.Input.value`}
Expand Down
Loading