Skip to content

Commit

Permalink
refactor: move person search
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-Guillemin committed Feb 9, 2024
1 parent 77e6f89 commit 0ec726d
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import CheckboxLayout from '@/components/layouts/CheckboxLayout.vue';
import PersonneSearch from '@/components/search/PersonneSearch.vue';
import PersonneSearch from '@/components/search/personne/PersonneSearch.vue';
import { setPersonneAdditional } from '@/services/personneService.ts';
import { useConfigurationStore } from '@/stores/configurationStore.ts';
import { useFonctionStore } from '@/stores/fonctionStore.ts';
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/src/components/dialogs/QuickAddDialog.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import PersonneSearch from '@/components/search/PersonneSearch.vue';
import PersonneSearch from '@/components/search/personne/PersonneSearch.vue';
import { setPersonneAdditionalWithCode, setPersonneAdditionalWithId } from '@/services/personneService.ts';
import { useConfigurationStore } from '@/stores/configurationStore.ts';
import { usePersonneStore } from '@/stores/personneStore.ts';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import PersonneChip from '@/components/search/PersonneChip.vue';
import PersonneListItem from '@/components/search/PersonneListItem.vue';
import PersonneChip from '@/components/search/personne/PersonneChip.vue';
import PersonneListItem from '@/components/search/personne/PersonneListItem.vue';
import { searchPersonne } from '@/services/personneService.ts';
import type { SimplePersonne } from '@/types/personneType.ts';
import { errorHandler } from '@/utils/axiosUtils.ts';
Expand Down

0 comments on commit 0ec726d

Please sign in to comment.