with force open

master
Pete Matsyburka 1 week ago
parent e20eacb5ee
commit d12c67fd54

@ -48,6 +48,7 @@
v-if="field.type === 'payment' && !isNew" v-if="field.type === 'payment' && !isNew"
:field="field" :field="field"
:with-condition="false" :with-condition="false"
:with-force-open="false"
@click-description="isShowDescriptionModal = true" @click-description="isShowDescriptionModal = true"
@click-formula="isShowFormulaModal = true" @click-formula="isShowFormulaModal = true"
/> />

@ -1,7 +1,7 @@
<template> <template>
<span <span
class="dropdown dropdown-end field-settings-dropdown" class="dropdown dropdown-end field-settings-dropdown"
:class="{ 'dropdown-open': ((!field.preferences?.price && !field.preferences?.formula && !field.preferences?.price_id && !field.preferences?.payment_link_id) || !isConnected) && !isLoading }" :class="{ 'dropdown-open': withForceOpen && ((!field.preferences?.price && !field.preferences?.formula && !field.preferences?.price_id && !field.preferences?.payment_link_id) || !isConnected) && !isLoading }"
> >
<label <label
tabindex="0" tabindex="0"
@ -292,6 +292,11 @@ export default {
type: Object, type: Object,
required: true required: true
}, },
withForceOpen: {
type: Boolean,
required: false,
default: true
},
withCustomFields: { withCustomFields: {
type: Boolean, type: Boolean,
required: false, required: false,

Loading…
Cancel
Save