refs #6681 - PR3 - Resolve conflicts #166

Merged
alexm merged 88 commits from hyervoni-PR-3 into dev 2024-01-29 08:29:45 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 3fc1bff213 - Show all commits

View File

@ -1,7 +1,7 @@
<script setup>
import { ref, computed, onBeforeMount, onMounted } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRouter } from 'vue-router';
import { useRoute, useRouter } from 'vue-router';
import { date, QBtn } from 'quasar';
@ -12,6 +12,7 @@ import { useStateStore } from 'stores/useStateStore';
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
const { t } = useI18n();
const route = useRoute();
const router = useRouter();
const stateStore = useStateStore();
@ -29,7 +30,7 @@ onBeforeMount(async () => {
},
},
],
where: { clientFk: '1' },
where: { clientFk: `${route.params.id}` },
order: ['created DESC'],
limit: 20,
};