WIP: #7283 item_missing_e2e #1029

Draft
jsegarra wants to merge 190 commits from 7283_item_missing_e2e into dev
3 changed files with 4 additions and 6 deletions
Showing only changes of commit a45c40f796 - Show all commits

View File

@ -44,7 +44,7 @@ const onDataSaved = (...args) => {
<template #form-inputs="{ data, validate }">
<VnRow>
<VnInput
:label="t('Names')"
:label="t('Name')"
v-model="data.name"
:rules="validate('city.name')"
/>

View File

@ -135,14 +135,14 @@ async function onProvinceCreated(data) {
ref="provincesFetchDataRef"
@on-fetch="handleProvinces"
:sort-by="['name ASC']"
:limit="3"
:limit="30"
auto-load
url="Provinces/location"
/>
<FetchData
ref="townsFetchDataRef"
:sort-by="['name ASC']"
:limit="3"
:limit="30"
:filter="townFilter"
@on-fetch="handleTowns"
auto-load
@ -150,7 +150,7 @@ async function onProvinceCreated(data) {
/>
<FetchData
ref="countriesFetchDataRef"
:limit="3"
:limit="30"
:filter="countryFilter"
:sort-by="['name ASC']"
@on-fetch="handleCountries"

View File

@ -95,8 +95,6 @@ const handleKeydown = (e) => {
if ($props.insertable && e.key.match(/[0-9]/)) {
handleInsertMode(e);
} else {
e.preventDefault();
}
};