Taskfile ssh

This commit is contained in:
2024-01-21 08:49:00 +01:00
parent 79b550ae3f
commit f0fb5232b9
2 changed files with 5 additions and 1 deletions

View File

@@ -16,3 +16,6 @@ tasks:
build:
cmds:
- vendor/bin/dep build
ssh:
cmds:
- vendor/bin/dep ssh

View File

@@ -73,6 +73,7 @@ const tproducts = computed(() => {
})
})
const bodyRowClassNameFunction = (item) => {
if (item.country == form.country.code) return 'result-country';
};
const filterOptions = computed(() => {
@@ -361,7 +362,7 @@ watch(ccodes, (codes) => {
console.log('NNN=',codes);
console.log('IP=',geoip.value);
codes.forEach((c) => { if (c.code == geoip.value.iso_code) form.country = c; });
console.log(form.country);
console.log('FC=',form.country);
})
</script>
<template>