Skip to content

Commit

Permalink
rename missing props
Browse files Browse the repository at this point in the history
  • Loading branch information
maximpn committed Apr 24, 2023
1 parent 091106d commit 1ac3838
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -559,7 +559,7 @@ const RuleDetailsPageComponent: React.FC<DetectionEngineComponentProps> = ({
</RuleStatus>
)}
<EuiFlexItem grow={false}>
<RuleSnoozeBadge id={ruleId} showTooltipInline />
<RuleSnoozeBadge ruleId={ruleId} showTooltipInline />
</EuiFlexItem>
</>
);
Expand Down
Expand Up @@ -112,7 +112,7 @@ const useRuleSnoozeColumn = (): TableColumn => {
() => ({
field: 'snooze',
name: i18n.COLUMN_SNOOZE,
render: (_, rule: Rule) => <RuleSnoozeBadge id={rule.id} />,
render: (_, rule: Rule) => <RuleSnoozeBadge ruleId={rule.id} />,
width: '100px',
sortable: false,
}),
Expand Down

0 comments on commit 1ac3838

Please sign in to comment.