Skip to content

Commit

Permalink
[Fix #151] Fix circular dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
LaChope committed Jan 25, 2024
1 parent b14257e commit 1ff7bc5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/models/failureModeModel.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import VocabularyUtils from "@utils/VocabularyUtils";
import {Mitigation, CONTEXT as MITIGATION_CONTEXT} from "@models/mitigationModel";
import {Mitigation} from "@models/mitigationModel";
import {FaultEvent} from "@models/eventModel";
import {
ABSTRACT_CONTEXT,
FUNCTION_CONTEXT,
BEHAVIOR_CONTEXT,
EVENT_CONTEXT,
COMPONENT_CONTEXT
COMPONENT_CONTEXT,
MITIGATION_CONTEXT
} from "@models/modelsContext";
import {Behavior} from "@models/behaviorModel";

Expand Down
3 changes: 3 additions & 0 deletions src/models/modelsContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ export const EVENT_CONTEXT = {
};

export const FUNCTION_CONTEXT = {
};

export const MITIGATION_CONTEXT = {
};

0 comments on commit 1ff7bc5

Please sign in to comment.