7253-devToTest_2418 #315

Merged
alexm merged 315 commits from 7253-devToTest_2418 into test 2024-04-23 08:12:46 +00:00
3 changed files with 3 additions and 0 deletions
Showing only changes of commit 41e1bad44d - Show all commits

View File

@ -56,6 +56,7 @@ onBeforeMount(() => {
watch(
() => route.params.id,
(newValue) => {
if (!newValue) return;
getAddressesData(newValue);
getClientData(newValue);
}

View File

@ -38,6 +38,7 @@ onBeforeMount(() => {
watch(
() => route.params.id,
(newValue) => {
if (!newValue) return;
getData(newValue);
}
);

View File

@ -98,6 +98,7 @@ onBeforeMount(() => {
watch(
() => route.params.id,
(newValue) => {
if (!newValue) return;
getData(newValue);
}
);