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: build:
cmds: cmds:
- vendor/bin/dep build - vendor/bin/dep build
ssh:
cmds:
- vendor/bin/dep ssh

View File

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