Skip to content

Commit

Permalink
fix rule in monitor criteria
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Oct 4, 2024
1 parent add1180 commit 7a38a0d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Common/Types/Monitor/MonitorCriteria.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default class MonitorCriteria extends DatabaseProperty {
onlineMonitorStatusId: ObjectID;
offlineMonitorStatusId: ObjectID;
defaultIncidentSeverityId: ObjectID;
defaultAlertSeverityId: ObjectID;
defaultAlertSeverityId: ObjectID;
}): MonitorCriteria {
const monitorCriteria: MonitorCriteria = new MonitorCriteria();
const offlineCriteria: MonitorCriteriaInstance =
Expand Down
1 change: 0 additions & 1 deletion Common/UI/Components/HeaderAlert/HeaderAlertGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const HeaderAlertGroup: (props: ComponentProps) => ReactElement = (
): ReactElement => {
let children: Array<ReactElement | false> = props.children || [];


children = children.filter((child: ReactElement | false) => {
if (!child) {
return false;
Expand Down
2 changes: 0 additions & 2 deletions Dashboard/src/Components/Form/Monitor/MonitorStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -533,8 +533,6 @@ const MonitorStepElement: FunctionComponent<ComponentProps> = (
/>
</div>
)}

<HorizontalRule />
</div>
)}

Expand Down

0 comments on commit 7a38a0d

Please sign in to comment.