Fixed width on search
This commit is contained in:
@@ -92,7 +92,7 @@ const fetch_ccodes = async () => {
|
||||
if (v !== null) return { country: k, code: v };
|
||||
})
|
||||
.filter((n) => n);
|
||||
console.log("ccodes=", ccodes.value);
|
||||
console.log("ccodes=o", ccodes.value);
|
||||
} catch (e) {
|
||||
const response = await Swal.fire({
|
||||
title: __("are you want to try again") + "?",
|
||||
|
||||
@@ -28,6 +28,7 @@ const screenHeight = ref(screen.height)
|
||||
const hover = ref(true);
|
||||
const hoverImage = ref(null);
|
||||
const selectedRow = ref(null);
|
||||
const timestamp = ref(Date.now());
|
||||
// const $matomo = inject('$matomo');
|
||||
|
||||
const sdropdown = ref([
|
||||
@@ -339,6 +340,7 @@ const fetch_ccodes = async () => {
|
||||
|
||||
const async_search = async () => {
|
||||
if (settingsStore.text.length < 2) return;
|
||||
timestamp.value = Date.now();
|
||||
|
||||
try {
|
||||
let country = null;
|
||||
@@ -507,7 +509,7 @@ const selectedRowClassNameFunction = (item) => {
|
||||
settingsStore.settings["LAST_REFRESH_TIME"] }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="">
|
||||
<div class="w-2/5">
|
||||
<form @submit.prevent="submit">
|
||||
<div>
|
||||
<div class="flex flex-col start-0">
|
||||
|
||||
Reference in New Issue
Block a user