Skip to content

Commit

Permalink
fix: fsd structure
Browse files Browse the repository at this point in the history
  • Loading branch information
mnenie committed Aug 30, 2024
1 parent 63723c5 commit 15f79c2
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/features/boards/charts/ui/ActivityBoardChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { onMounted, ref } from 'vue';
import { Chart } from 'chart.js/auto';
import type { ChartItem } from 'chart.js';
import { dataBoards, options } from '../config';
import { dataBoards, options } from '../model';
import useChart from '../lib/composables/useChart';
const chartRef = ref<ChartItem>();
Expand Down
2 changes: 1 addition & 1 deletion src/features/boards/charts/ui/ActivityTaskChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { onMounted, ref } from 'vue';
import { Chart } from 'chart.js/auto';
import type { ChartItem } from 'chart.js';
import { dataTasks, options } from '../config';
import { dataTasks, options } from '../model';
import useChart from '../lib/composables/useChart';
const chartRef = ref<ChartItem>();
Expand Down

0 comments on commit 15f79c2

Please sign in to comment.