0
1
Fork 0

Fix teleport submit problem

This commit is contained in:
William Buezas 2024-08-14 12:16:46 -03:00
parent 887ee8aea4
commit 594b17b4ab
2 changed files with 3 additions and 3 deletions

View File

@ -184,7 +184,6 @@ defineExpose({
v-if="!loading"
ref="addressFormRef"
class="column full-width q-gutter-y-xs"
@submit="submit()"
>
<span class="text-h6 text-bold">
{{ title }}
@ -208,12 +207,12 @@ defineExpose({
<QBtn
v-if="defaultActions"
:label="t('save')"
type="submit"
:icon="showBottomActions ? undefined : 'check'"
rounded
no-caps
flat
:disabled="!showBottomActions && !updatedColumns.length"
@click="submit()"
/>
<slot name="actions" />
</component>

View File

@ -11,7 +11,8 @@ export const useAppStore = defineStore('hedera', {
imageUrl: '',
useRightDrawer: false,
rightDrawerOpen: false,
basketOrderId: null
basketOrderId: null,
isHeaderMounted: false
}),
actions: {