Skip to content

Commit

Permalink
Fix import sidestep
Browse files Browse the repository at this point in the history
  • Loading branch information
pijng committed Feb 12, 2025
1 parent 89deec0 commit aee7612
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions web/src/features/alerting-rule-create/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ import { h, spec } from "forest";
import { $creationError, events, ruleForm } from "./model";
import { i18n } from "@/shared/lib";
import { createStore } from "effector";
import { AlertingCondition, AlertingSeverity, Level } from "@/shared/api";
import { AggregationType, AlertingCondition, AlertingSeverity, Level } from "@/shared/api";
import { schemaModel } from "@/entities/schema";
import { AggregationType } from "@/shared/api/alerting-rule";

export const NewAlertingRuleForm = () => {
h("form", () => {
Expand Down
2 changes: 1 addition & 1 deletion web/src/features/alerting-rule-edit/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { i18n } from "@/shared/lib";
import { createStore } from "effector";
import { AlertingCondition, AlertingSeverity, Level } from "@/shared/api";
import { schemaModel } from "@/entities/schema";
import { AggregationType } from "@/shared/api/alerting-rule";
import { AggregationType } from "@/shared/api";

export const EditAlertingRuleForm = () => {
h("form", () => {
Expand Down
1 change: 1 addition & 0 deletions web/src/shared/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export {
type AlertingRule,
type AlertingCondition,
type AlertingSeverity,
type AggregationType,
type AlertingRuleToCreate,
type AlertingRuleToUpdate,
getRules,
Expand Down

0 comments on commit aee7612

Please # to comment.