0
0
Fork 0

fix(ClaimList): fix summary

This commit is contained in:
Alex Moreno 2024-09-16 10:03:12 +02:00
parent 5c3c511568
commit 4c8238455f
2 changed files with 3 additions and 3 deletions

View File

@ -633,7 +633,7 @@ function handleOnDataSaved(_, res) {
</QTable>
</template>
</CrudModel>
<QPageSticky :offset="[20, 20]" style="z-index: 2">
<QPageSticky v-if="$props.create" :offset="[20, 20]" style="z-index: 2">
<QBtn
@click="
() =>
@ -645,7 +645,7 @@ function handleOnDataSaved(_, res) {
shortcut="+"
/>
<QTooltip>
{{ createForm.title }}
{{ createForm?.title }}
</QTooltip>
</QPageSticky>
<QDialog v-model="showForm" transition-show="scale" transition-hide="scale">

View File

@ -21,7 +21,7 @@ onMounted(() => (stateStore.leftDrawer = $props.leftDrawer));
</QDrawer>
<QPageContainer>
<QPage>
<RouterView></RouterView>
<RouterView />
</QPage>
</QPageContainer>
</template>