8231_testToMaster_2448 #997

Merged
alexm merged 400 commits from 8231_testToMaster_2448 into master 2024-11-26 06:28:29 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 86ae827fda - Show all commits

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) {