Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
LanaBot committed Nov 7, 2023
1 parent ce0bfc8 commit f4cade3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/OpenaiChatComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<script>
import openaiService from "@/services/openai.service";
import shared from "@/services/shared";
import utils from "@/common/utils";
// import MarkdownIt from 'markdown-it'
export default {
Expand All @@ -44,7 +44,7 @@ export default {
data() {
return {
caseId: null,
logId: shared.getLocal('logId'),
logId: utils.getLocal('logId'),
showChat: false,
answerLoading: false,
Expand Down
4 changes: 2 additions & 2 deletions src/components/casePage/AnalyticalViewComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
</template>

<script>
import VueCytoscape from '@/components/CytoscapeComponent.vue';
import LegendComponent from '@/components/LegendComponent.vue';
import VueCytoscape from './CytoscapeComponent.vue';
import LegendComponent from './LegendComponent.vue';
import TooltipComponent from '@/components/TooltipComponent.vue';
import RecommendationComponent from './RecommendationComponent.vue';
import OpenaiChat from "@/components/OpenaiChatComponent.vue";
Expand Down

0 comments on commit f4cade3

Please sign in to comment.