forked from verdnatura/hedera-web
Fix teleport submit problem
This commit is contained in:
parent
887ee8aea4
commit
594b17b4ab
|
@ -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>
|
||||
|
|
|
@ -11,7 +11,8 @@ export const useAppStore = defineStore('hedera', {
|
|||
imageUrl: '',
|
||||
useRightDrawer: false,
|
||||
rightDrawerOpen: false,
|
||||
basketOrderId: null
|
||||
basketOrderId: null,
|
||||
isHeaderMounted: false
|
||||
}),
|
||||
|
||||
actions: {
|
||||
|
|
Loading…
Reference in New Issue