Skip to content
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

EPMRPP-92444 || Launch owner checkbox is not checked by default #3918

Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,7 @@ export const AttributeListFormField = ({

return (
<>
<Checkbox
value={shown}
onChange={attributeControlHandler}
data-automation-id={'showAttributesCheckbox'}
AmsterGet marked this conversation as resolved.
Show resolved Hide resolved
>
<Checkbox value={shown} onChange={attributeControlHandler}>
{formatMessage(messages.attributes)}
</Checkbox>
<div className={cx('description')}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ const AddEditNotificationModal = ({
>
{formatMessage(messages.description)}
<div className={cx('content')}>
<FieldProvider name={RULE_NAME_FIELD_KEY} type="text">
<FieldProvider name={RULE_NAME_FIELD_KEY}>
<FieldErrorHint provideHint={false} dataAutomationId={RULE_NAME_FIELD_KEY + FIELD}>
<FieldText label={formatMessage(messages.nameLabel)} defaultWidth={false} isRequired />
</FieldErrorHint>
Expand All @@ -346,7 +346,6 @@ const AddEditNotificationModal = ({
<FieldElement
name={RECIPIENTS_FIELD_KEY}
className={cx('autocomplete')}
type="text"
label={formatMessage(messages.recipientsLabel)}
dataAutomationId={RECIPIENTS_FIELD_KEY + FIELD}
>
Expand All @@ -356,7 +355,6 @@ const AddEditNotificationModal = ({
</FieldElement>
<FieldElement
name={INFORM_OWNER_FIELD_KEY}
type="text"
className={cx('checkbox')}
dataAutomationId={INFORM_OWNER_FIELD_KEY + FIELD}
>
Expand Down Expand Up @@ -390,7 +388,6 @@ const AddEditNotificationModal = ({
<FieldElement
label={formatMessage(messages.inCaseLabel)}
name={SEND_CASE_FIELD_KEY}
type="text"
className={cx('input')}
dataAutomationId={SEND_CASE_FIELD_KEY + FIELD}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ const CreatePatternAnalysisModal = ({ data, handleSubmit, initialize, dirty }) =
</FieldProvider>
<FieldElement
name="type"
type="text"
label={formatMessage(messages.createPatternModalType)}
className={cx('dropdown')}
dataAutomationId="patternTypeField"
Expand All @@ -99,7 +98,6 @@ const CreatePatternAnalysisModal = ({ data, handleSubmit, initialize, dirty }) =
<FieldElement
label={formatMessage(messages.createPatternModalCondition)}
name="value"
type="text"
isRequired
dataAutomationId="patternConditionField"
>
Expand Down
Loading