0
0
Fork 0
This commit is contained in:
Carlos Satorres 2024-07-16 13:48:32 +02:00
parent f29d873ed4
commit 86ae827fda
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ const columns = computed(() => [
const cloneItem = async (itemFk) => {
try {
const { data } = await axios.post(`Items/${itemFk}/clone`);
const { data } = await axios.post(`Items/${itemFk.id}/clone`);
if (!data) return;
router.push({ name: 'ItemTags', params: { id: data.id } });
} catch (err) {