diff --git a/Taskfile.yml b/Taskfile.yml index 8c9f37b..c9daba2 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -16,3 +16,6 @@ tasks: build: cmds: - vendor/bin/dep build + ssh: + cmds: + - vendor/bin/dep ssh diff --git a/resources/js/Pages/IkeaRoot.vue b/resources/js/Pages/IkeaRoot.vue index a0fbbc4..845e328 100644 --- a/resources/js/Pages/IkeaRoot.vue +++ b/resources/js/Pages/IkeaRoot.vue @@ -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); })