Fix of bugs

This commit is contained in:
2024-01-29 06:17:06 +01:00
parent efd202a90b
commit d1f5810635
3 changed files with 6 additions and 2 deletions

BIN
resources/js/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -346,9 +346,12 @@ function selectCountry(item, id) {
let cCntry = [["Country"]];
console.log(form.countries);
let aCntry = form.countries.map((country) => [country]);
if (form.countries.length == 0) aCntry = ccountry.value.map((country) => [country.country_name]);
ccountry_filter.value = cCntry;
ccountry_filter.value.push(...aCntry);
}
onMounted(fetch);
@@ -537,7 +540,7 @@ watch(ccodes, (codes) => {
</div>
</form>
<div class="mt-5">
<input v-if="showDescLongFilter" placeholder="Search in Long Desc" class="mb-1 px-2 py-1 placeholder-blueGray-300 text-blueGray-600 relative bg-white bg-white rounded text-sm border border-blueGray-300 outline-none focus:outline-none focus:ring w-full" type="text" v-model="searchValue">
<input v-if="showDescLongFilter" placeholder="Search in long description" class="mb-1 px-2 py-1 placeholder-blueGray-300 text-blueGray-600 relative bg-white bg-white rounded text-sm border border-blueGray-300 outline-none focus:outline-none focus:ring w-full" type="text" v-model="searchValue">
<EasyTable
class="none"
:rows-per-page="20"