Merge pull request 'fix(ClaimList): fix summary' (!716) from warmFix_ClaimList_popup into test
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #716
Reviewed-by: Javier Segarra <jsegarra@verdnatura.es>
This commit is contained in:
Alex Moreno 2024-09-16 08:06:22 +00:00
commit a2f9178832
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>