7299_testToMaster #351

Merged
alexm merged 321 commits from 7299_testToMaster into master 2024-05-07 05:36:02 +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);
}
);