fix: refs #6696 popup persistent fixed

This commit is contained in:
Javi Gallego 2024-12-04 07:34:55 +01:00
parent 5f41aeb28d
commit a317b3777a
2 changed files with 3 additions and 3 deletions

View File

@ -12,12 +12,12 @@ const $props = defineProps({
default: 0,
},
});
// calcular usesMana borrar de ticketSale
const emit = defineEmits(['save', 'cancel']);
const { t } = useI18n();
const QPopupProxyRef = ref(null);
const componentName = ref();
const componentName = ref('mana');
const mana = ref(null);
const usesMana = ref(null);
@ -103,7 +103,6 @@ onBeforeMount(async () => {
class="no-border-radius"
dense
style="width: 50%"
@click="save()"
data-cy="saveManaBtn"
type="submit"
>

View File

@ -811,6 +811,7 @@ watch(
:label="t('ticketSale.discount')"
type="number"
@keydown.enter.prevent.stop
autofocus
/>
</TicketEditManaProxy>
</template>