8627-devToTest #1421

Merged
alexm merged 768 commits from 8627-devToTest into test 2025-02-18 12:37:37 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit fb902b54bc - Show all commits

View File

@ -1,7 +1,6 @@
<script setup>
import { onMounted, onBeforeUnmount, ref } from 'vue';
import { useStateStore } from 'stores/useStateStore';
import { computed } from 'vue';
const stateStore = useStateStore();
const actions = ref(null);
@ -26,7 +25,7 @@ onMounted(() => {
if (data.value) observer.observe(data.value, opts);
});
const actionsChildCount = computed(() => !!actions.value?.childNodes?.length);
const actionsChildCount = () => !!actions.value?.childNodes?.length;
onBeforeUnmount(() => stateStore.toggleSubToolbar() && hasSubToolbar);
</script>

View File

@ -201,7 +201,7 @@ watch([year, businessFk], () => refreshData());
:save-url="saveUrl"
@on-fetch="
(data) => {
saveUrl = `Businesses/${data[0].id}`;
saveUrl = `Businesses/${data.id}`;
}
"
:body="body"