fix(ClaimList): fix summary
gitea/salix-front/pipeline/pr-test This commit looks good Details

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

View File

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