From 81263ff957812ce6151a09bf6d6b2fbd68fc1832 Mon Sep 17 00:00:00 2001 From: rui hildt Date: Fri, 10 Feb 2023 21:10:52 +0100 Subject: [PATCH] Add contextual search engine recommendation --- .../PrivacyRecommendation.vue | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/components/PrivacyRecommendations/PrivacyRecommendation.vue b/src/components/PrivacyRecommendations/PrivacyRecommendation.vue index ed9ed3fe..66541063 100644 --- a/src/components/PrivacyRecommendations/PrivacyRecommendation.vue +++ b/src/components/PrivacyRecommendations/PrivacyRecommendation.vue @@ -14,6 +14,9 @@ import type { Recommendation } from '@/composables/useRecommendations/Recommenda import useRecommendationIconTooltip from '@/composables/useRecommendationIconTooltip'; import useWebRtc from '@/composables/useWebRtc'; import ExternalLinkIconLabel from '@/components/ExternalLinkIconLabel.vue'; +import useConnection from '@/composables/useConnection'; + +const { connection } = useConnection(); const props = defineProps<{ recommendation: Recommendation; @@ -76,6 +79,21 @@ const tooltip = useRecommendationIconTooltip(recommendation); +
+ +
+