Skip to content
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 @@ -115,7 +115,7 @@ export const RulePageNameInput = () => {
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiButtonIcon
color="success"
color="primary"
iconType="check"
size="m"
onClick={onCancelEdit}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const EditCategory = React.memo(({ isLoading, onSubmit, category }: EditC
<EuiFlexGroup alignItems="center" responsive={false}>
<EuiFlexItem grow={false}>
<EuiButton
color="success"
color="primary"
data-test-subj="edit-category-submit"
fill
iconType="save"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const EditTags = React.memo(({ isLoading, onSubmit, tags }: EditTagsProps
<EuiFlexGroup alignItems="center" responsive={false}>
<EuiFlexItem grow={false}>
<EuiButton
color="success"
color="primary"
data-test-subj="edit-tags-submit"
fill
iconType="save"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const EditComponent: CustomFieldType<CaseCustomFieldNumber>['Edit'] = ({
<EuiFlexGroup alignItems="center" responsive={false}>
<EuiFlexItem grow={false}>
<EuiButton
color="success"
color="primary"
data-test-subj={`case-number-custom-field-submit-button-${customFieldConfiguration.key}`}
fill
iconType="save"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ const EditComponent: CustomFieldType<CaseCustomFieldText>['Edit'] = ({
<EuiFlexGroup alignItems="center" responsive={false}>
<EuiFlexItem grow={false}>
<EuiButton
color="success"
color="primary"
data-test-subj={`case-text-custom-field-submit-button-${customFieldConfiguration.key}`}
fill
iconType="save"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const ConnectorsFormComponent: React.FC<Props> = ({
<EuiFlexItem grow={false}>
<EuiButton
disabled={!enableSave}
color="success"
color="primary"
data-test-subj="edit-connectors-submit"
fill
iconType="save"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const EditableMarkdownFooterComponent: React.FC<EditableMarkdownFooterProps> = (
<EuiFlexItem grow={false}>
<EuiButton
data-test-subj="editable-save-markdown"
color="success"
color="primary"
fill
iconType="save"
onClick={handleSaveAction}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ const ConnectorAddModal = ({
{canSave ? (
<EuiButton
fill
color="success"
color="primary"
data-test-subj="saveActionButtonModal"
type="submit"
iconType="check"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const CreateConnectorFlyoutComponent: React.FC<CreateConnectorFlyoutProps> = ({
{onTestConnector && (
<EuiFlexItem grow={false}>
<EuiButton
color="success"
color="primary"
data-test-subj="create-connector-flyout-save-test-btn"
type="submit"
isLoading={isSaving}
Expand All @@ -259,7 +259,7 @@ const CreateConnectorFlyoutComponent: React.FC<CreateConnectorFlyoutProps> = ({
<EuiFlexItem grow={false}>
<EuiButton
fill
color="success"
color="primary"
data-test-subj="create-connector-flyout-save-btn"
type="submit"
isLoading={isSaving}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ const EditConnectorFlyoutComponent: React.FC<EditConnectorFlyoutProps> = ({
<EuiButton
fill
iconType={isSaved ? 'check' : undefined}
color="success"
color="primary"
data-test-subj="edit-connector-flyout-save-btn"
isLoading={isSaving}
onClick={onClickSave}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const AlertCounts = ({ activeAlertCount, recoveredAlertCount, handleClick
<AlertItem
label={ACTIVE_NOW_LABEL}
count={activeAlertCount}
color={activeAlertCount > 0 ? euiTheme.colors.dangerText : euiTheme.colors.successText}
color={activeAlertCount > 0 ? euiTheme.colors.dangerText : euiTheme.colors.textSuccess}
Comment thread
adcoelho marked this conversation as resolved.
alertType={ALERT_STATUS_ACTIVE}
handleClick={handleClick}
showWarningIcon={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const RuleAddFooter = ({
<EuiFlexItem grow={false}>
<EuiButton
fill
color="success"
color="primary"
data-test-subj="saveRuleButton"
type="submit"
iconType="check"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ export const RuleEdit = <
<EuiFlexItem grow={false}>
<EuiButton
fill
color="success"
color="primary"
data-test-subj="saveEditedRuleButton"
type="submit"
iconType="check"
Expand Down